repo_name
stringlengths
9
74
language
stringclasses
1 value
length_bytes
int64
11
9.34M
extension
stringclasses
2 values
content
stringlengths
11
9.34M
AdaCore/training_material
Ada
6,213
ads
with System; package STM32F4.FMC is FMC_Bank1_SDRAM : constant := 16#00000000#; FMC_Bank2_SDRAM : constant := 16#00000001#; FMC_Bank1_NORSRAM1 : constant := 16#00000000#; FMC_Bank1_NORSRAM2 : constant := 16#00000002#; FMC_Bank1_NORSRAM3 : constant := 16#00000004#; FMC_Bank1_NORSRAM4 : constant := 16#00000006#; FMC_Bank2_NAND : constant := 16#00000010#; FMC_Bank3_NAND : constant := 16#00000100#; FMC_Bank4_PCCARD : constant := 16#00001000#; FMC_RowBits_Number_11b : constant := 16#00000000#; FMC_RowBits_Number_12b : constant := 16#00000004#; FMC_RowBits_Number_13b : constant := 16#00000008#; FMC_ColumnBits_Number_8b : constant := 16#0000_0000#; FMC_ColumnBits_Number_9b : constant := 16#0000_0001#; FMC_ColumnBits_Number_10b : constant := 16#0000_0002#; FMC_ColumnBits_Number_11b : constant := 16#0000_0003#; FMC_SDMemory_Width_8b : constant := 16#0000_0000#; FMC_SDMemory_Width_16b : constant := 16#0000_0010#; FMC_SDMemory_Width_32b : constant := 16#0000_0020#; FMC_InternalBank_Number_2 : constant := 16#0000_0000#; FMC_InternalBank_Number_4 : constant := 16#0000_0040#; FMC_CAS_Latency_1 : constant := 16#0000_0080#; FMC_CAS_Latency_2 : constant := 16#0000_0100#; FMC_CAS_Latency_3 : constant := 16#0000_0180#; FMC_Write_Protection_Disable : constant := 16#0000_0000#; FMC_Write_Protection_Enable : constant := 16#0000_0200#; FMC_SDClock_Disable : constant := 16#0000_0000#; FMC_SDClock_Period_2 : constant := 16#0000_0800#; FMC_SDClock_Period_3 : constant := 16#0000_0C00#; FMC_Read_Burst_Disable : constant := 16#0000_0000#; FMC_Read_Burst_Enable : constant := 16#0000_1000#; FMC_ReadPipe_Delay_0 : constant := 16#0000_0000#; FMC_ReadPipe_Delay_1 : constant := 16#0000_2000#; FMC_ReadPipe_Delay_2 : constant := 16#0000_4000#; FMC_Command_Mode_Normal : constant := 16#0000_0000#; FMC_Command_Mode_CLK_Enabled : constant := 16#0000_0001#; FMC_Command_Mode_PALL : constant := 16#0000_0002#; FMC_Command_Mode_AutoRefresh : constant := 16#0000_0003#; FMC_Command_Mode_LoadMode : constant := 16#0000_0004#; FMC_Command_Mode_Selfrefresh : constant := 16#0000_0005#; FMC_Command_Mode_PowerDown : constant := 16#0000_0006#; FMC_Command_Target_Bank2 : constant := 16#0000_0008#; FMC_Command_Target_Bank1 : constant := 16#0000_0010#; FMC_Command_Target_Bank1_2 : constant := 16#0000_0018#; FMC_NormalMode_Status : constant := 16#0000_0000#; -- FMC_SelfRefreshMode_Status : constant := FMC_SDSR_MODES1_0; -- FMC_PowerDownMode_Status : constant := FMC_SDSR_MODES1_1; FMC_IT_RisingEdge : constant := 16#0000_0008#; FMC_IT_Level : constant := 16#0000_0010#; FMC_IT_FallingEdge : constant := 16#0000_0020#; FMC_IT_Refresh : constant := 16#0000_4000#; FMC_FLAG_RisingEdge : constant := 16#0000_0001#; FMC_FLAG_Level : constant := 16#0000_0002#; FMC_FLAG_FallingEdge : constant := 16#0000_0004#; FMC_FLAG_FEMPT : constant := 16#0000_0040#; FMC_FLAG_Refresh : constant := 16#0000_0001#; FMC_FLAG_Busy : constant := 16#0000_0020#; type Word_x2 is array (0 .. 1) of Word with Pack, Size => 2 * 32; FMC_Base : constant := 16#A000_0000#; FMC_Bank1_R_BASE : constant := FMC_BASE + 16#0000#; FMC_Bank1E_R_BASE : constant := FMC_BASE + 16#0104#; FMC_Bank2_R_BASE : constant := FMC_BASE + 16#0060#; FMC_Bank3_R_BASE : constant := FMC_BASE + 16#0080#; FMC_Bank4_R_BASE : constant := FMC_BASE + 16#00A0#; FMC_Bank5_6_R_BASE : constant := FMC_BASE + 16#0140#; type FMC_Bank1_Registers is array (1 .. 8) of Word with Pack; Bank1 : FMC_Bank1_Registers with Volatile, Address => System'To_Address (FMC_Bank1_R_BASE); type FMC_Bank1E_Registers is array (1 .. 7) of Word with Pack; Bank1E : FMC_Bank1E_Registers with Volatile, Address => System'To_Address (FMC_Bank1E_R_BASE); type FMC_Bank2_3_Registers is record PCR : Word; SR : Word; PMEM : Word; PATT : Word; Reserved : Word; ECCR : Word; end record with Pack, Size => 6 * 32; Bank2 : FMC_Bank2_3_Registers with Volatile, Address => System'To_Address (FMC_Bank2_R_BASE); Bank3 : FMC_Bank2_3_Registers with Volatile, Address => System'To_Address (FMC_Bank3_R_BASE); type FMC_Bank4_Registers is record PCR : Word; SR : Word; PMEM : Word; PATT : Word; PIO : Word; end record with Pack, Size => 5 * 32; Bank4 : FMC_Bank4_Registers with Volatile, Address => System'To_Address (FMC_Bank4_R_BASE); type FMC_Bank5_6_Registers is record SDCR : Word_x2; SDTR : Word_x2; SDCMR : Word; SDRTR : Word; SDSR : Word; end record with Pack, Size => 7 * 32; Bank5_6 : FMC_Bank5_6_Registers with Volatile, Address => System'To_Address (FMC_Bank5_6_R_BASE); type FMC_SDRAM_TimingInit_Config is record LoadToActiveDelay : Word; ExitSelfRefreshDelay : Word; SelfRefreshTime : Word; RowCycleDelay : Word; WriteRecoveryTime : Word; RPDelay : Word; RCDDelay : Word; end record; type FMC_SDRAM_Init_Config is record Bank : Integer; ColumnBitsNumber : Word; RowBitsNumber : Word; SDMemoryDataWidth : Word; InternalBankNumber : Word; CASLatency : Word; WriteProtection : Word; SDClockPeriod : Word; ReadBurst : Word; ReadPipeDelay : Word; Timing_Conf : FMC_SDRAM_TimingInit_Config; end record; type FMC_SDRAM_Cmd_Conf is record CommandMode : Word; CommandTarget : Word; AutoRefreshNumber : Word; ModeRegisterDefinition : Word; end record; procedure FMC_SDRAM_Init (SDRAM_Conf : FMC_SDRAM_Init_Config); procedure FMC_SDRAM_Cmd (Cmd : FMC_SDRAM_Cmd_Conf); function FMC_Get_Flag (Bank : Word; Flag : Word) return Boolean; procedure FMC_Set_Refresh_Count (Cnt : Word); end STM32F4.FMC;
leomlr/sudoku_ada-jewl
Ada
7,621
adb
------------------------------------------------------------------------------ -- -- -- S U D O K U W I T H J E W L -- -- -- ------------------------------------------------------------------------------ -- Taliesin Meillier -- Add a John English's Window Library (JEWL). with JEWL.IO; -- Add the Ada Text Inputs/Outputs library. with Ada.Text_Io; with Ada.Strings.Unbounded; With Ada.Strings.Fixed; -- Add personal libraries. with sudoku_tools_16; Procedure sudoku_16 Is use JEWL.IO; use Ada.Strings.Unbounded; use sudoku_tools_16; use My_Windows; -- Frame parameters FRAME_TITLE: String := "Sudoku_16x16"; FRAME_WIDTH: Integer := 700; FRAME_HEIGTH: Integer := 765; -- Memo parameters MEMO_POSITION_X: Integer := 20; MEMO_POSITION_Y: Integer := 550; MEMO_WIDTH: Integer := 600; MEMO_HEIGHT: Integer := 150; -- Buttons parameters BUTTONS_POSITION_X: Integer := 550; -- Initialize game window objects. My_Frame: Frame_Type := Frame (FRAME_WIDTH, FRAME_HEIGTH, FRAME_TITLE, Quit); My_Memo: Memo_Type := Memo (My_Frame, (MEMO_POSITION_X, MEMO_POSITION_Y), MEMO_WIDTH, MEMO_HEIGHT, Font ("Montserrat", 10)); My_Button_Load: Button_Type := Button (My_Frame, (BUTTONS_POSITION_X, 50), 80, 40, "Load", Load); My_Button_Save: Button_Type := Button (My_Frame, (BUTTONS_POSITION_X, 100), 80, 40, "Save", Save); My_Button_Finish: Button_Type := Button (My_Frame, (BUTTONS_POSITION_X, 150), 80, 40, "Finish", Finish); My_Button_Show: Button_Type := Button (My_Frame, (BUTTONS_POSITION_X, 200), 80, 40, "Show", Show); -- Initialize sudoku grid blocks and base filename; My_Grid_Blocks: Grid_Block_Type; My_Matrix_Base_Filename: Unbounded_String := To_Unbounded_String(""); -- Procedures defining commands of game buttons. -- Button LOAD Procedure Command_Load (grid_blocks: in out Grid_Block_Type; memo: in Memo_Type; base_filename: in out Unbounded_String) Is grid: Matrix_Type; file: Ada.Text_IO.File_Type; canceled: Boolean := False; base_filename_empty: Unbounded_String; Begin Begin JEWL.IO.Open(file, "Select sudoku matrix as .txt file"); Exception when others => Ada.Text_IO.Put_Line("JEWL FileOpeningError: No file selected."); canceled := True; End; if not canceled then if fillGrid(readFile(file), grid, base_filename) then Append_Line(memo, "Loaded file: '" & Ada.Text_IO.Name(file) & "'"); if (Ada.Strings.Fixed.Index(Ada.Text_IO.Name(file), "\" & To_String(base_filename), 1) > 0) then Ada.Text_IO.Put_Line (Ada.Text_IO.Name(file) & " is base file"); base_filename_empty := To_Unbounded_String(""); setGrid(grid_blocks, grid, base_filename_empty); else Ada.Text_IO.Put_Line (Ada.Text_IO.Name(file) & " is user file"); setGrid(grid_blocks, grid, base_filename); end if; else Append_Line(memo, "Load: Invalid Grid in choosen file."); end if; JEWL.IO.Close(file); else Append_Line(memo, "Load: No sudoku text file selected."); end if; End Command_Load; -- Button SAVE Procedure Command_Save (grid_blocks: in Grid_Block_Type; memo: in Memo_Type; base_filename: in out Unbounded_String) Is grid: Matrix_Type; filename: Unbounded_String; canceled: Boolean := False; Begin if getGrid(grid_blocks, grid, True) then showGrid(grid); Begin filename := To_Unbounded_String(Get("Enter a filename:", "saved_matrix")); --unbounded : chaine de caractere de taille pas definie Exception when others => Ada.Text_IO.Put_Line ("JEWL InputFileNameError: Canceled by user."); canceled := True; End; if not canceled then if To_String(filename)'Length > 0 then if saveGrid(grid, To_String(filename), base_filename) then Append_Line(memo, "Sudoku grid saved in '" & To_String(filename) & ".txt'"); -- to string permet transformer une chaine de caractere en taille definie necessaire pour ceratines fonctions else Append_Line(memo, "Save: Unable to save sudoku grid."); end if; else Append_Line(memo, "Save: Invalid filename, try again."); end if; end if; else Append_Line(memo, "Save: Unable to get valid sudoku grid."); end if; End Command_Save; -- Button FINISH Procedure Command_Finish (grid_blocks: in Grid_Block_Type; memo: in Memo_Type) Is grid: Matrix_Type; Begin if getGrid(grid_blocks, grid, False) then showGrid(grid); if isValidGrid(grid) then Append_Line(memo, "Finish: Valid grid ! You have won ! :)"); else Append_Line(memo, "Finish: Invalid grid ! Try again.."); end if; else Show_Error("Grid not filled or bad input."); end if; End Command_Finish; -- Button SHOW Procedure Command_Show (grid_blocks: in Grid_Block_Type) Is grid: Matrix_Type; Begin if getGrid(grid_blocks, grid, True) then showGrid(grid); else Show_Error("Unable to show grid."); end if; End Command_Show; -- Procedure to init game by loading a grid Procedure Init_Game (grid_blocks: in out Grid_Block_Type; memo: in Memo_Type) Is grid: Matrix_Type; base_filename: Unbounded_String; Begin Append_Line(memo, "Welcome to Sudoku 16x16 ! :)"); createGrid(My_Frame, grid_blocks); base_filename := To_Unbounded_String("matrix_16.txt"); if loadBaseMatrix(base_filename, grid) then base_filename := To_Unbounded_String(""); setGrid(grid_blocks, grid, base_filename); Append_Line(memo, "Initial matrix_16.txt loaded."); end if; End Init_Game; -- Start of game Begin Init_Game(My_Grid_Blocks, My_Memo); if Valid(My_Frame) then loop case Next_Command is when Quit => exit; when Load => Command_Load(My_Grid_Blocks, My_Memo, My_Matrix_Base_Filename); when Save => Command_Save(My_Grid_Blocks, My_Memo, My_Matrix_Base_Filename); when Finish => Command_Finish(My_Grid_Blocks, My_Memo); when Show => Command_Show(My_Grid_Blocks); when others => null; end case; end loop; end if; End sudoku_16;
reznikmm/matreshka
Ada
3,719
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Style_Rel_Height_Attributes is pragma Preelaborate; type ODF_Style_Rel_Height_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Style_Rel_Height_Attribute_Access is access all ODF_Style_Rel_Height_Attribute'Class with Storage_Size => 0; end ODF.DOM.Style_Rel_Height_Attributes;
reznikmm/matreshka
Ada
4,543
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Draw.Id_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Draw_Id_Attribute_Node is begin return Self : Draw_Id_Attribute_Node do Matreshka.ODF_Draw.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Draw_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Draw_Id_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Id_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Draw_URI, Matreshka.ODF_String_Constants.Id_Attribute, Draw_Id_Attribute_Node'Tag); end Matreshka.ODF_Draw.Id_Attributes;
AdaCore/training_material
Ada
1,226
ads
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; package clzerointrin_h is -- Copyright (C) 2012-2017 Free Software Foundation, Inc. -- This file is part of GCC. -- GCC 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. -- GCC 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. -- 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/>. -- skipped func _mm_clzero end clzerointrin_h;
reznikmm/matreshka
Ada
4,011
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Style_Line_Style_Attributes; package Matreshka.ODF_Style.Line_Style_Attributes is type Style_Line_Style_Attribute_Node is new Matreshka.ODF_Style.Abstract_Style_Attribute_Node and ODF.DOM.Style_Line_Style_Attributes.ODF_Style_Line_Style_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Style_Line_Style_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Style_Line_Style_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Style.Line_Style_Attributes;
xeenta/learning-ada
Ada
612
adb
with Ada.Text_IO; use Ada.Text_IO; package body Greetings is procedure Swear (Greeting : String; Speaker_Age : Person.Age := Person.Age'First) is begin if Speaker_Age >= Person.Adult_Age then Put_Line ((if Greeting = Hello then Swear_Hello elsif Greeting = Hi then Swear_Hi elsif Greeting = Good_Morning then Swear_Morning elsif Greeting = What_s_Up then Swear_Whats_Up else raise Unknown_Greeting)); else Put_Line (Hello); end if; end Swear; end Greetings;
optikos/oasis
Ada
4,511
adb
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Known_Discriminant_Parts is function Create (Left_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Discriminants : Program.Elements.Discriminant_Specifications .Discriminant_Specification_Vector_Access; Right_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Known_Discriminant_Part is begin return Result : Known_Discriminant_Part := (Left_Bracket_Token => Left_Bracket_Token, Discriminants => Discriminants, Right_Bracket_Token => Right_Bracket_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Discriminants : Program.Elements.Discriminant_Specifications .Discriminant_Specification_Vector_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Known_Discriminant_Part is begin return Result : Implicit_Known_Discriminant_Part := (Discriminants => Discriminants, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Discriminants (Self : Base_Known_Discriminant_Part) return Program.Elements.Discriminant_Specifications .Discriminant_Specification_Vector_Access is begin return Self.Discriminants; end Discriminants; overriding function Left_Bracket_Token (Self : Known_Discriminant_Part) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Left_Bracket_Token; end Left_Bracket_Token; overriding function Right_Bracket_Token (Self : Known_Discriminant_Part) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Right_Bracket_Token; end Right_Bracket_Token; overriding function Is_Part_Of_Implicit (Self : Implicit_Known_Discriminant_Part) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Known_Discriminant_Part) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Known_Discriminant_Part) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : aliased in out Base_Known_Discriminant_Part'Class) is begin for Item in Self.Discriminants.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; null; end Initialize; overriding function Is_Known_Discriminant_Part_Element (Self : Base_Known_Discriminant_Part) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Known_Discriminant_Part_Element; overriding function Is_Definition_Element (Self : Base_Known_Discriminant_Part) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Definition_Element; overriding procedure Visit (Self : not null access Base_Known_Discriminant_Part; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Known_Discriminant_Part (Self); end Visit; overriding function To_Known_Discriminant_Part_Text (Self : aliased in out Known_Discriminant_Part) return Program.Elements.Known_Discriminant_Parts .Known_Discriminant_Part_Text_Access is begin return Self'Unchecked_Access; end To_Known_Discriminant_Part_Text; overriding function To_Known_Discriminant_Part_Text (Self : aliased in out Implicit_Known_Discriminant_Part) return Program.Elements.Known_Discriminant_Parts .Known_Discriminant_Part_Text_Access is pragma Unreferenced (Self); begin return null; end To_Known_Discriminant_Part_Text; end Program.Nodes.Known_Discriminant_Parts;
cielavenir/procon
Ada
511
adb
with Ada.Text_IO, Ada.Integer_Text_IO; procedure codeforces345C is n,y0,y,z,m,d,r:integer; begin Ada.Integer_Text_IO.Get(n); r:=0; for i in 1..n loop Ada.Integer_Text_IO.Get(y0); Ada.Integer_Text_IO.Get(m);m:=-m; Ada.Integer_Text_IO.Get(d);d:=-d; m:=m+1; if m<4 then y0:=y0-1; m:=m+12; end if; y:=y0/100; z:=y0 mod 100; if (5*y+z+y/4+z/4+13*m/5+d-1) mod 7=5 and d=13 then r:=r+1; end if; end loop; Ada.Integer_Text_IO.Put(r,width=>1); Ada.Text_IO.New_line; end codeforces345C;
stcarrez/ada-asf
Ada
1,890
ads
----------------------------------------------------------------------- -- asf-components-utils -- ASF Util Components -- Copyright (C) 2009 - 2021 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Beans.Basic; with ASF.Components.Base; with ASF.Contexts.Faces; -- = Util Components = -- The `util` components are specific to Ada Server Faces and they are provided to help in -- writing server faces pages. The component is defined in the following namespace: -- -- ``` -- xmlns:util="http://code.google.com/p/ada-asf/util" -- ``` -- -- @include-doc docs/comp-util/*.txt package ASF.Components.Utils is -- Get the line information where the component is defined. function Get_Line_Info (UI : in Base.UIComponent'Class) return String; -- Get the component attribute that implements the <tt>List_Bean</tt> interface. -- Returns null if the attribute is not found or does not implement the interface. function Get_List_Bean (UI : in Base.UIComponent'Class; Name : in String; Context : in ASF.Contexts.Faces.Faces_Context'Class) return Util.Beans.Basic.List_Bean_Access; end ASF.Components.Utils;
sungyeon/drake
Ada
5,591
ads
pragma License (Unrestricted); generic type Real is digits <>; package Ada.Numerics.Generic_Complex_Types is pragma Pure; type Complex is record Re, Im : Real'Base; end record; pragma Complex_Representation (Complex); type Imaginary is private; pragma Preelaborable_Initialization (Imaginary); -- modified -- i : constant Imaginary; -- j : constant Imaginary; function i return Imaginary; function j return Imaginary renames i; pragma Inline (i); function Re (X : Complex) return Real'Base; function Im (X : Complex) return Real'Base; function Im (X : Imaginary) return Real'Base; pragma Inline (Re); pragma Inline (Im); procedure Set_Re (X : in out Complex; Re : Real'Base); procedure Set_Im (X : in out Complex; Im : Real'Base); procedure Set_Im (X : out Imaginary; Im : Real'Base); pragma Inline (Set_Re); pragma Inline (Set_Im); function Compose_From_Cartesian (Re, Im : Real'Base) return Complex; function Compose_From_Cartesian (Re : Real'Base) return Complex; function Compose_From_Cartesian (Im : Imaginary) return Complex; pragma Inline (Compose_From_Cartesian); function Modulus (X : Complex) return Real'Base; function "abs" (Right : Complex) return Real'Base renames Modulus; pragma Inline (Modulus); function Argument (X : Complex) return Real'Base; function Argument (X : Complex; Cycle : Real'Base) return Real'Base; pragma Inline (Argument); function Compose_From_Polar (Modulus, Argument : Real'Base) return Complex; function Compose_From_Polar (Modulus, Argument, Cycle : Real'Base) return Complex; function "+" (Right : Complex) return Complex; function "-" (Right : Complex) return Complex; function Conjugate (X : Complex) return Complex; pragma Inline ("+"); pragma Inline ("-"); pragma Inline (Conjugate); function "+" (Left, Right : Complex) return Complex; function "-" (Left, Right : Complex) return Complex; function "*" (Left, Right : Complex) return Complex; function "/" (Left, Right : Complex) return Complex; pragma Inline ("+"); pragma Inline ("-"); function "**" (Left : Complex; Right : Integer) return Complex; function "+" (Right : Imaginary) return Imaginary with Import, Convention => Intrinsic; function "-" (Right : Imaginary) return Imaginary with Import, Convention => Intrinsic; function Conjugate (X : Imaginary) return Imaginary renames "-"; function "abs" (Right : Imaginary) return Real'Base; pragma Inline ("abs"); function "+" (Left, Right : Imaginary) return Imaginary with Import, Convention => Intrinsic; function "-" (Left, Right : Imaginary) return Imaginary with Import, Convention => Intrinsic; function "*" (Left, Right : Imaginary) return Real'Base; function "/" (Left, Right : Imaginary) return Real'Base; pragma Inline ("*"); pragma Inline ("/"); function "**" (Left : Imaginary; Right : Integer) return Complex; function "<" (Left, Right : Imaginary) return Boolean with Import, Convention => Intrinsic; function "<=" (Left, Right : Imaginary) return Boolean with Import, Convention => Intrinsic; function ">" (Left, Right : Imaginary) return Boolean with Import, Convention => Intrinsic; function ">=" (Left, Right : Imaginary) return Boolean with Import, Convention => Intrinsic; function "+" (Left : Complex; Right : Real'Base) return Complex; function "+" (Left : Real'Base; Right : Complex) return Complex; function "-" (Left : Complex; Right : Real'Base) return Complex; function "-" (Left : Real'Base; Right : Complex) return Complex; function "*" (Left : Complex; Right : Real'Base) return Complex; function "*" (Left : Real'Base; Right : Complex) return Complex; function "/" (Left : Complex; Right : Real'Base) return Complex; function "/" (Left : Real'Base; Right : Complex) return Complex; pragma Inline ("+"); pragma Inline ("-"); pragma Inline ("*"); pragma Inline ("/"); function "+" (Left : Complex; Right : Imaginary) return Complex; function "+" (Left : Imaginary; Right : Complex) return Complex; function "-" (Left : Complex; Right : Imaginary) return Complex; function "-" (Left : Imaginary; Right : Complex) return Complex; function "*" (Left : Complex; Right : Imaginary) return Complex; function "*" (Left : Imaginary; Right : Complex) return Complex; function "/" (Left : Complex; Right : Imaginary) return Complex; function "/" (Left : Imaginary; Right : Complex) return Complex; pragma Inline ("+"); pragma Inline ("-"); pragma Inline ("*"); pragma Inline ("/"); function "+" (Left : Imaginary; Right : Real'Base) return Complex; function "+" (Left : Real'Base; Right : Imaginary) return Complex; function "-" (Left : Imaginary; Right : Real'Base) return Complex; function "-" (Left : Real'Base; Right : Imaginary) return Complex; function "*" (Left : Imaginary; Right : Real'Base) return Imaginary; function "*" (Left : Real'Base; Right : Imaginary) return Imaginary; function "/" (Left : Imaginary; Right : Real'Base) return Imaginary; function "/" (Left : Real'Base; Right : Imaginary) return Imaginary; pragma Inline ("+"); pragma Inline ("-"); pragma Inline ("*"); pragma Inline ("/"); private type Imaginary is new Real'Base; -- i : constant Imaginary := 1.0; -- j : constant Imaginary := 1.0; function i return Imaginary is (1.0); end Ada.Numerics.Generic_Complex_Types;
zhmu/ananas
Ada
46,848
adb
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- X R _ T A B L S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1998-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Types; use Types; with Osint; with Ada.Unchecked_Conversion; with Ada.Unchecked_Deallocation; with Ada.Strings.Fixed; with Ada.Strings; with Ada.Text_IO; with Ada.Characters.Handling; use Ada.Characters.Handling; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with GNAT.OS_Lib; use GNAT.OS_Lib; with GNAT.Directory_Operations; use GNAT.Directory_Operations; with GNAT.HTable; with GNAT.Heap_Sort_G; package body Xr_Tabls is type HTable_Headers is range 1 .. 10000; procedure Set_Next (E : File_Reference; Next : File_Reference); function Next (E : File_Reference) return File_Reference; function Get_Key (E : File_Reference) return Cst_String_Access; function Hash (F : Cst_String_Access) return HTable_Headers; function Equal (F1, F2 : Cst_String_Access) return Boolean; -- The five subprograms above are used to instantiate the static -- htable to store the files that should be processed. package File_HTable is new GNAT.HTable.Static_HTable (Header_Num => HTable_Headers, Element => File_Record, Elmt_Ptr => File_Reference, Null_Ptr => null, Set_Next => Set_Next, Next => Next, Key => Cst_String_Access, Get_Key => Get_Key, Hash => Hash, Equal => Equal); -- A hash table to store all the files referenced in the -- application. The keys in this htable are the name of the files -- themselves, therefore it is assumed that the source path -- doesn't contain twice the same source or ALI file name type Unvisited_Files_Record; type Unvisited_Files_Access is access Unvisited_Files_Record; type Unvisited_Files_Record is record File : File_Reference; Next : Unvisited_Files_Access; end record; -- A special list, in addition to File_HTable, that only stores -- the files that haven't been visited so far. Note that the File -- list points to some data in File_HTable, and thus should never be freed. function Next (E : Declaration_Reference) return Declaration_Reference; procedure Set_Next (E, Next : Declaration_Reference); function Get_Key (E : Declaration_Reference) return Cst_String_Access; -- The subprograms above are used to instantiate the static -- htable to store the entities that have been found in the application package Entities_HTable is new GNAT.HTable.Static_HTable (Header_Num => HTable_Headers, Element => Declaration_Record, Elmt_Ptr => Declaration_Reference, Null_Ptr => null, Set_Next => Set_Next, Next => Next, Key => Cst_String_Access, Get_Key => Get_Key, Hash => Hash, Equal => Equal); -- A hash table to store all the entities defined in the -- application. For each entity, we store a list of its reference -- locations as well. -- The keys in this htable should be created with Key_From_Ref, -- and are the file, line and column of the declaration, which are -- unique for every entity. Entities_Count : Natural := 0; -- Number of entities in Entities_HTable. This is used in the end -- when sorting the table. Longest_File_Name_In_Table : Natural := 0; -- The length of the longest file name stored Unvisited_Files : Unvisited_Files_Access := null; -- Linked list of unvisited files Directories : Project_File_Ptr; -- Store the list of directories to visit Default_Match : Boolean := False; -- Default value for match in declarations function Parse_Gnatls_Src return String; -- Return the standard source directories (taking into account the -- ADA_INCLUDE_PATH environment variable, if Osint.Add_Default_Search_Dirs -- was called first). function Parse_Gnatls_Obj return String; -- Return the standard object directories (taking into account the -- ADA_OBJECTS_PATH environment variable). function Key_From_Ref (File_Ref : File_Reference; Line : Natural; Column : Natural) return String; -- Return a key for the symbol declared at File_Ref, Line, -- Column. This key should be used for lookup in Entity_HTable function Is_Less_Than (Decl1, Decl2 : Declaration_Reference) return Boolean; -- Compare two declarations (the comparison is case-insensitive) function Is_Less_Than (Ref1, Ref2 : Reference) return Boolean; -- Compare two references procedure Store_References (Decl : Declaration_Reference; Get_Writes : Boolean := False; Get_Reads : Boolean := False; Get_Bodies : Boolean := False; Get_Declaration : Boolean := False; Arr : in out Reference_Array; Index : in out Natural); -- Store in Arr, starting at Index, all the references to Decl. The Get_* -- parameters can be used to indicate which references should be stored. -- Constraint_Error will be raised if Arr is not big enough. procedure Sort (Arr : in out Reference_Array); -- Sort an array of references (Arr'First must be 1) -------------- -- Set_Next -- -------------- procedure Set_Next (E : File_Reference; Next : File_Reference) is begin E.Next := Next; end Set_Next; procedure Set_Next (E : Declaration_Reference; Next : Declaration_Reference) is begin E.Next := Next; end Set_Next; ------------- -- Get_Key -- ------------- function Get_Key (E : File_Reference) return Cst_String_Access is begin return E.File; end Get_Key; function Get_Key (E : Declaration_Reference) return Cst_String_Access is begin return E.Key; end Get_Key; ---------- -- Hash -- ---------- function Hash (F : Cst_String_Access) return HTable_Headers is function H is new GNAT.HTable.Hash (HTable_Headers); begin return H (F.all); end Hash; ----------- -- Equal -- ----------- function Equal (F1, F2 : Cst_String_Access) return Boolean is begin return F1.all = F2.all; end Equal; ------------------ -- Key_From_Ref -- ------------------ function Key_From_Ref (File_Ref : File_Reference; Line : Natural; Column : Natural) return String is begin return File_Ref.File.all & Natural'Image (Line) & Natural'Image (Column); end Key_From_Ref; --------------------- -- Add_Declaration -- --------------------- function Add_Declaration (File_Ref : File_Reference; Symbol : String; Line : Natural; Column : Natural; Decl_Type : Character; Is_Parameter : Boolean := False; Remove_Only : Boolean := False; Symbol_Match : Boolean := True) return Declaration_Reference is procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Declaration_Record, Declaration_Reference); Key : aliased constant String := Key_From_Ref (File_Ref, Line, Column); New_Decl : Declaration_Reference := Entities_HTable.Get (Key'Unchecked_Access); Is_Param : Boolean := Is_Parameter; begin -- Insert the Declaration in the table. There might already be a -- declaration in the table if the entity is a parameter, so we -- need to check that first. if New_Decl /= null and then New_Decl.Symbol_Length = 0 then Is_Param := Is_Parameter or else New_Decl.Is_Parameter; Entities_HTable.Remove (Key'Unrestricted_Access); Entities_Count := Entities_Count - 1; Free (New_Decl.Key); Unchecked_Free (New_Decl); New_Decl := null; end if; -- The declaration might also already be there for parent types. In -- this case, we should keep the entry, since some other entries are -- pointing to it. if New_Decl = null and then not Remove_Only then New_Decl := new Declaration_Record' (Symbol_Length => Symbol'Length, Symbol => Symbol, Key => new String'(Key), Decl => new Reference_Record' (File => File_Ref, Line => Line, Column => Column, Source_Line => null, Next => null), Is_Parameter => Is_Param, Decl_Type => Decl_Type, Body_Ref => null, Ref_Ref => null, Modif_Ref => null, Match => Symbol_Match and then (Default_Match or else Match (File_Ref, Line, Column)), Par_Symbol => null, Next => null); Entities_HTable.Set (New_Decl); Entities_Count := Entities_Count + 1; if New_Decl.Match then Longest_File_Name_In_Table := Natural'Max (File_Ref.File'Length, Longest_File_Name_In_Table); end if; elsif New_Decl /= null and then not New_Decl.Match then New_Decl.Match := Default_Match or else Match (File_Ref, Line, Column); New_Decl.Is_Parameter := New_Decl.Is_Parameter or Is_Param; elsif New_Decl /= null then New_Decl.Is_Parameter := New_Decl.Is_Parameter or Is_Param; end if; return New_Decl; end Add_Declaration; ---------------------- -- Add_To_Xref_File -- ---------------------- function Add_To_Xref_File (File_Name : String; Visited : Boolean := True; Emit_Warning : Boolean := False; Gnatchop_File : String := ""; Gnatchop_Offset : Integer := 0) return File_Reference is Base : aliased constant String := Base_Name (File_Name); Dir : constant String := Dir_Name (File_Name); Dir_Acc : GNAT.OS_Lib.String_Access := null; Ref : File_Reference; begin -- Do we have a directory name as well? if File_Name /= Base then Dir_Acc := new String'(Dir); end if; Ref := File_HTable.Get (Base'Unchecked_Access); if Ref = null then Ref := new File_Record' (File => new String'(Base), Dir => Dir_Acc, Lines => null, Visited => Visited, Emit_Warning => Emit_Warning, Gnatchop_File => new String'(Gnatchop_File), Gnatchop_Offset => Gnatchop_Offset, Next => null); File_HTable.Set (Ref); if not Visited then -- Keep a separate list for faster access Set_Unvisited (Ref); end if; end if; return Ref; end Add_To_Xref_File; -------------- -- Add_Line -- -------------- procedure Add_Line (File : File_Reference; Line : Natural; Column : Natural) is begin File.Lines := new Ref_In_File'(Line => Line, Column => Column, Next => File.Lines); end Add_Line; ---------------- -- Add_Parent -- ---------------- procedure Add_Parent (Declaration : in out Declaration_Reference; Symbol : String; Line : Natural; Column : Natural; File_Ref : File_Reference) is begin Declaration.Par_Symbol := Add_Declaration (File_Ref, Symbol, Line, Column, Decl_Type => ' ', Symbol_Match => False); end Add_Parent; ------------------- -- Add_Reference -- ------------------- procedure Add_Reference (Declaration : Declaration_Reference; File_Ref : File_Reference; Line : Natural; Column : Natural; Ref_Type : Character; Labels_As_Ref : Boolean) is New_Ref : Reference; New_Decl : Declaration_Reference; pragma Unreferenced (New_Decl); begin case Ref_Type is when ' ' | 'b' | 'c' | 'H' | 'i' | 'm' | 'o' | 'r' | 'R' | 's' | 'x' => null; when 'l' | 'w' => if not Labels_As_Ref then return; end if; when '=' | '<' | '>' | '^' => -- Create dummy declaration in table to report it as a parameter -- In a given ALI file, the declaration of the subprogram comes -- before the declaration of the parameter. However, it is -- possible that another ALI file has been parsed that also -- references the parameter (for instance a named parameter in -- a call), so we need to check whether there already exists a -- declaration for the parameter. New_Decl := Add_Declaration (File_Ref => File_Ref, Symbol => "", Line => Line, Column => Column, Decl_Type => ' ', Is_Parameter => True); when 'd' | 'e' | 'E' | 'k' | 'p' | 'P' | 't' | 'z' => return; when others => Ada.Text_IO.Put_Line ("Unknown reference type: " & Ref_Type); return; end case; New_Ref := new Reference_Record' (File => File_Ref, Line => Line, Column => Column, Source_Line => null, Next => null); -- We can insert the reference into the list directly, since all the -- references will appear only once in the ALI file corresponding to the -- file where they are referenced. This saves a lot of time compared to -- checking the list to check if it exists. case Ref_Type is when 'b' | 'c' => New_Ref.Next := Declaration.Body_Ref; Declaration.Body_Ref := New_Ref; when ' ' | 'H' | 'i' | 'l' | 'o' | 'r' | 'R' | 's' | 'w' | 'x' => New_Ref.Next := Declaration.Ref_Ref; Declaration.Ref_Ref := New_Ref; when 'm' => New_Ref.Next := Declaration.Modif_Ref; Declaration.Modif_Ref := New_Ref; when others => null; end case; if not Declaration.Match then Declaration.Match := Match (File_Ref, Line, Column); end if; if Declaration.Match then Longest_File_Name_In_Table := Natural'Max (File_Ref.File'Length, Longest_File_Name_In_Table); end if; end Add_Reference; ------------------- -- ALI_File_Name -- ------------------- function ALI_File_Name (Ada_File_Name : String) return String is -- Should ideally be based on the naming scheme defined in -- project files but this is too late for an obsolescent feature. Index : constant Natural := Ada.Strings.Fixed.Index (Ada_File_Name, ".", Going => Ada.Strings.Backward); begin if Index /= 0 then return Ada_File_Name (Ada_File_Name'First .. Index) & Osint.ALI_Suffix.all; else return Ada_File_Name & "." & Osint.ALI_Suffix.all; end if; end ALI_File_Name; ------------------ -- Is_Less_Than -- ------------------ function Is_Less_Than (Ref1, Ref2 : Reference) return Boolean is begin if Ref1 = null then return False; elsif Ref2 = null then return True; end if; if Ref1.File.File.all < Ref2.File.File.all then return True; elsif Ref1.File.File.all = Ref2.File.File.all then return (Ref1.Line < Ref2.Line or else (Ref1.Line = Ref2.Line and then Ref1.Column < Ref2.Column)); end if; return False; end Is_Less_Than; ------------------ -- Is_Less_Than -- ------------------ function Is_Less_Than (Decl1, Decl2 : Declaration_Reference) return Boolean is -- We cannot store the data case-insensitive in the table, -- since we wouldn't be able to find the right casing for the -- display later on. S1 : constant String := To_Lower (Decl1.Symbol); S2 : constant String := To_Lower (Decl2.Symbol); begin if S1 < S2 then return True; elsif S1 > S2 then return False; end if; return Decl1.Key.all < Decl2.Key.all; end Is_Less_Than; ------------------------- -- Create_Project_File -- ------------------------- procedure Create_Project_File (Name : String) is Obj_Dir : Unbounded_String := Null_Unbounded_String; Src_Dir : Unbounded_String := Null_Unbounded_String; Build_Dir : GNAT.OS_Lib.String_Access := new String'(""); F : File_Descriptor; Len : Positive; File_Name : aliased String := Name & ASCII.NUL; begin -- Read the size of the file F := Open_Read (File_Name'Address, Text); -- Project file not found if F /= Invalid_FD then Len := Positive (File_Length (F)); declare Buffer : String (1 .. Len); Index : Positive := Buffer'First; Last : Positive; begin Len := Read (F, Buffer'Address, Len); Close (F); -- First, look for Build_Dir, since all the source and object -- path are relative to it. while Index <= Buffer'Last loop -- Find the end of line Last := Index; while Last <= Buffer'Last and then Buffer (Last) /= ASCII.LF and then Buffer (Last) /= ASCII.CR loop Last := Last + 1; end loop; if Index <= Buffer'Last - 9 and then Buffer (Index .. Index + 9) = "build_dir=" then Index := Index + 10; while Index <= Last and then (Buffer (Index) = ' ' or else Buffer (Index) = ASCII.HT) loop Index := Index + 1; end loop; Free (Build_Dir); Build_Dir := new String'(Buffer (Index .. Last - 1)); end if; Index := Last + 1; -- In case we had a ASCII.CR/ASCII.LF end of line, skip the -- remaining symbol if Index <= Buffer'Last and then Buffer (Index) = ASCII.LF then Index := Index + 1; end if; end loop; -- Now parse the source and object paths Index := Buffer'First; while Index <= Buffer'Last loop -- Find the end of line Last := Index; while Last <= Buffer'Last and then Buffer (Last) /= ASCII.LF and then Buffer (Last) /= ASCII.CR loop Last := Last + 1; end loop; if Index <= Buffer'Last - 7 and then Buffer (Index .. Index + 7) = "src_dir=" then Append (Src_Dir, Normalize_Pathname (Name => Ada.Strings.Fixed.Trim (Buffer (Index + 8 .. Last - 1), Ada.Strings.Both), Directory => Build_Dir.all) & Path_Separator); elsif Index <= Buffer'Last - 7 and then Buffer (Index .. Index + 7) = "obj_dir=" then Append (Obj_Dir, Normalize_Pathname (Name => Ada.Strings.Fixed.Trim (Buffer (Index + 8 .. Last - 1), Ada.Strings.Both), Directory => Build_Dir.all) & Path_Separator); end if; -- In case we had a ASCII.CR/ASCII.LF end of line, skip the -- remaining symbol Index := Last + 1; if Index <= Buffer'Last and then Buffer (Index) = ASCII.LF then Index := Index + 1; end if; end loop; end; end if; Osint.Add_Default_Search_Dirs; declare Src : constant String := Parse_Gnatls_Src; Obj : constant String := Parse_Gnatls_Obj; begin Directories := new Project_File' (Src_Dir_Length => Length (Src_Dir) + Src'Length, Obj_Dir_Length => Length (Obj_Dir) + Obj'Length, Src_Dir => To_String (Src_Dir) & Src, Obj_Dir => To_String (Obj_Dir) & Obj, Src_Dir_Index => 1, Obj_Dir_Index => 1, Last_Obj_Dir_Start => 0); end; Free (Build_Dir); end Create_Project_File; --------------------- -- Current_Obj_Dir -- --------------------- function Current_Obj_Dir return String is begin return Directories.Obj_Dir (Directories.Last_Obj_Dir_Start .. Directories.Obj_Dir_Index - 2); end Current_Obj_Dir; ---------------- -- Get_Column -- ---------------- function Get_Column (Decl : Declaration_Reference) return String is begin return Ada.Strings.Fixed.Trim (Natural'Image (Decl.Decl.Column), Ada.Strings.Left); end Get_Column; function Get_Column (Ref : Reference) return String is begin return Ada.Strings.Fixed.Trim (Natural'Image (Ref.Column), Ada.Strings.Left); end Get_Column; --------------------- -- Get_Declaration -- --------------------- function Get_Declaration (File_Ref : File_Reference; Line : Natural; Column : Natural) return Declaration_Reference is Key : aliased constant String := Key_From_Ref (File_Ref, Line, Column); begin return Entities_HTable.Get (Key'Unchecked_Access); end Get_Declaration; ---------------------- -- Get_Emit_Warning -- ---------------------- function Get_Emit_Warning (File : File_Reference) return Boolean is begin return File.Emit_Warning; end Get_Emit_Warning; -------------- -- Get_File -- -------------- function Get_File (Decl : Declaration_Reference; With_Dir : Boolean := False) return String is begin return Get_File (Decl.Decl.File, With_Dir); end Get_File; function Get_File (Ref : Reference; With_Dir : Boolean := False) return String is begin return Get_File (Ref.File, With_Dir); end Get_File; function Get_File (File : File_Reference; With_Dir : Boolean := False; Strip : Natural := 0) return String is pragma Annotate (CodePeer, Skip_Analysis); -- Disable CodePeer false positives Tmp : GNAT.OS_Lib.String_Access; function Internal_Strip (Full_Name : String) return String; -- Internal function to process the Strip parameter -------------------- -- Internal_Strip -- -------------------- function Internal_Strip (Full_Name : String) return String is Unit_End : Natural; Extension_Start : Natural; S : Natural; begin if Strip = 0 then return Full_Name; end if; -- Isolate the file extension Extension_Start := Full_Name'Last; while Extension_Start >= Full_Name'First and then Full_Name (Extension_Start) /= '.' loop Extension_Start := Extension_Start - 1; end loop; -- Strip the right number of subunit_names S := Strip; Unit_End := Extension_Start - 1; while Unit_End >= Full_Name'First and then S > 0 loop if Full_Name (Unit_End) = '-' then S := S - 1; end if; Unit_End := Unit_End - 1; end loop; if Unit_End < Full_Name'First then return ""; else return Full_Name (Full_Name'First .. Unit_End) & Full_Name (Extension_Start .. Full_Name'Last); end if; end Internal_Strip; -- Start of processing for Get_File; begin -- If we do not want the full path name if not With_Dir then return Internal_Strip (File.File.all); end if; if File.Dir = null then if Ada.Strings.Fixed.Tail (File.File.all, 3) = Osint.ALI_Suffix.all then Tmp := Locate_Regular_File (Internal_Strip (File.File.all), Directories.Obj_Dir); else Tmp := Locate_Regular_File (File.File.all, Directories.Src_Dir); end if; if Tmp = null then File.Dir := new String'(""); else File.Dir := new String'(Dir_Name (Tmp.all)); Free (Tmp); end if; end if; return Internal_Strip (File.Dir.all & File.File.all); end Get_File; ------------------ -- Get_File_Ref -- ------------------ function Get_File_Ref (Ref : Reference) return File_Reference is begin return Ref.File; end Get_File_Ref; ----------------------- -- Get_Gnatchop_File -- ----------------------- function Get_Gnatchop_File (File : File_Reference; With_Dir : Boolean := False) return String is begin if File.Gnatchop_File.all = "" then return Get_File (File, With_Dir); else return File.Gnatchop_File.all; end if; end Get_Gnatchop_File; function Get_Gnatchop_File (Ref : Reference; With_Dir : Boolean := False) return String is begin return Get_Gnatchop_File (Ref.File, With_Dir); end Get_Gnatchop_File; function Get_Gnatchop_File (Decl : Declaration_Reference; With_Dir : Boolean := False) return String is begin return Get_Gnatchop_File (Decl.Decl.File, With_Dir); end Get_Gnatchop_File; -------------- -- Get_Line -- -------------- function Get_Line (Decl : Declaration_Reference) return String is begin return Ada.Strings.Fixed.Trim (Natural'Image (Decl.Decl.Line), Ada.Strings.Left); end Get_Line; function Get_Line (Ref : Reference) return String is begin return Ada.Strings.Fixed.Trim (Natural'Image (Ref.Line), Ada.Strings.Left); end Get_Line; ---------------- -- Get_Parent -- ---------------- function Get_Parent (Decl : Declaration_Reference) return Declaration_Reference is begin return Decl.Par_Symbol; end Get_Parent; --------------------- -- Get_Source_Line -- --------------------- function Get_Source_Line (Ref : Reference) return String is begin if Ref.Source_Line /= null then return Ref.Source_Line.all; else return ""; end if; end Get_Source_Line; function Get_Source_Line (Decl : Declaration_Reference) return String is begin if Decl.Decl.Source_Line /= null then return Decl.Decl.Source_Line.all; else return ""; end if; end Get_Source_Line; ---------------- -- Get_Symbol -- ---------------- function Get_Symbol (Decl : Declaration_Reference) return String is begin return Decl.Symbol; end Get_Symbol; -------------- -- Get_Type -- -------------- function Get_Type (Decl : Declaration_Reference) return Character is begin return Decl.Decl_Type; end Get_Type; ---------- -- Sort -- ---------- procedure Sort (Arr : in out Reference_Array) is Tmp : Reference; function Lt (Op1, Op2 : Natural) return Boolean; procedure Move (From, To : Natural); -- See GNAT.Heap_Sort_G -------- -- Lt -- -------- function Lt (Op1, Op2 : Natural) return Boolean is begin if Op1 = 0 then return Is_Less_Than (Tmp, Arr (Op2)); elsif Op2 = 0 then return Is_Less_Than (Arr (Op1), Tmp); else return Is_Less_Than (Arr (Op1), Arr (Op2)); end if; end Lt; ---------- -- Move -- ---------- procedure Move (From, To : Natural) is begin if To = 0 then Tmp := Arr (From); elsif From = 0 then Arr (To) := Tmp; else Arr (To) := Arr (From); end if; end Move; package Ref_Sort is new GNAT.Heap_Sort_G (Move, Lt); -- Start of processing for Sort begin Ref_Sort.Sort (Arr'Last); end Sort; ----------------------- -- Grep_Source_Files -- ----------------------- procedure Grep_Source_Files is Length : Natural := 0; Decl : Declaration_Reference := Entities_HTable.Get_First; Arr : Reference_Array_Access; Index : Natural; End_Index : Natural := 0; Current_File : File_Reference; Current_Line : Cst_String_Access; Buffer : GNAT.OS_Lib.String_Access; Ref : Reference; Line : Natural := Natural'Last; begin -- Create a temporary array, where all references will be -- sorted by files. This way, we only have to read the source -- files once. while Decl /= null loop -- Add 1 for the declaration itself Length := Length + References_Count (Decl, True, True, True) + 1; Decl := Entities_HTable.Get_Next; end loop; Arr := new Reference_Array (1 .. Length); Index := Arr'First; Decl := Entities_HTable.Get_First; while Decl /= null loop Store_References (Decl, True, True, True, True, Arr.all, Index); Decl := Entities_HTable.Get_Next; end loop; Sort (Arr.all); -- Now traverse the whole array and find the appropriate source -- lines. for R in Arr'Range loop Ref := Arr (R); if Ref.File /= Current_File then Free (Buffer); begin Read_File (Get_File (Ref.File, With_Dir => True), Buffer); End_Index := Buffer'First - 1; Line := 0; exception when Ada.Text_IO.Name_Error | Ada.Text_IO.End_Error => Line := Natural'Last; end; Current_File := Ref.File; end if; if Ref.Line > Line then -- Do not free Current_Line, it is referenced by the last -- Ref we processed. loop Index := End_Index + 1; loop End_Index := End_Index + 1; exit when End_Index > Buffer'Last or else Buffer (End_Index) = ASCII.LF; end loop; -- Skip spaces at beginning of line while Index < End_Index and then (Buffer (Index) = ' ' or else Buffer (Index) = ASCII.HT) loop Index := Index + 1; end loop; Line := Line + 1; exit when Ref.Line = Line; end loop; Current_Line := new String'(Buffer (Index .. End_Index - 1)); end if; Ref.Source_Line := Current_Line; end loop; Free (Buffer); Free (Arr); end Grep_Source_Files; --------------- -- Read_File -- --------------- procedure Read_File (File_Name : String; Contents : out GNAT.OS_Lib.String_Access) is Name_0 : constant String := File_Name & ASCII.NUL; FD : constant File_Descriptor := Open_Read (Name_0'Address, Binary); Length : Natural; begin if FD = Invalid_FD then raise Ada.Text_IO.Name_Error; end if; -- Include room for EOF char Length := Natural (File_Length (FD)); declare Buffer : String (1 .. Length + 1); This_Read : Integer; Read_Ptr : Natural := 1; begin loop This_Read := Read (FD, A => Buffer (Read_Ptr)'Address, N => Length + 1 - Read_Ptr); Read_Ptr := Read_Ptr + Integer'Max (This_Read, 0); exit when This_Read <= 0; end loop; Buffer (Read_Ptr) := EOF; Contents := new String'(Buffer (1 .. Read_Ptr)); if Read_Ptr /= Length + 1 then raise Ada.Text_IO.End_Error; end if; Close (FD); end; end Read_File; ----------------------- -- Longest_File_Name -- ----------------------- function Longest_File_Name return Natural is begin return Longest_File_Name_In_Table; end Longest_File_Name; ----------- -- Match -- ----------- function Match (File : File_Reference; Line : Natural; Column : Natural) return Boolean is Ref : Ref_In_File_Ptr := File.Lines; begin while Ref /= null loop if (Ref.Line = 0 or else Ref.Line = Line) and then (Ref.Column = 0 or else Ref.Column = Column) then return True; end if; Ref := Ref.Next; end loop; return False; end Match; ----------- -- Match -- ----------- function Match (Decl : Declaration_Reference) return Boolean is begin return Decl.Match; end Match; ---------- -- Next -- ---------- function Next (E : File_Reference) return File_Reference is begin return E.Next; end Next; function Next (E : Declaration_Reference) return Declaration_Reference is begin return E.Next; end Next; ------------------ -- Next_Obj_Dir -- ------------------ function Next_Obj_Dir return String is First : constant Integer := Directories.Obj_Dir_Index; Last : Integer; begin Last := Directories.Obj_Dir_Index; if Last > Directories.Obj_Dir_Length then return String'(1 .. 0 => ' '); end if; while Directories.Obj_Dir (Last) /= Path_Separator loop Last := Last + 1; end loop; Directories.Obj_Dir_Index := Last + 1; Directories.Last_Obj_Dir_Start := First; return Directories.Obj_Dir (First .. Last - 1); end Next_Obj_Dir; ------------------------- -- Next_Unvisited_File -- ------------------------- function Next_Unvisited_File return File_Reference is procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Unvisited_Files_Record, Unvisited_Files_Access); Ref : File_Reference; Tmp : Unvisited_Files_Access; begin if Unvisited_Files = null then return Empty_File; else Tmp := Unvisited_Files; Ref := Unvisited_Files.File; Unvisited_Files := Unvisited_Files.Next; Unchecked_Free (Tmp); return Ref; end if; end Next_Unvisited_File; ---------------------- -- Parse_Gnatls_Src -- ---------------------- function Parse_Gnatls_Src return String is Length : Natural; begin Length := 0; for J in 1 .. Osint.Nb_Dir_In_Src_Search_Path loop if Osint.Dir_In_Src_Search_Path (J)'Length = 0 then Length := Length + 2; else Length := Length + Osint.Dir_In_Src_Search_Path (J)'Length + 1; end if; end loop; declare Result : String (1 .. Length); L : Natural; begin L := Result'First; for J in 1 .. Osint.Nb_Dir_In_Src_Search_Path loop if Osint.Dir_In_Src_Search_Path (J)'Length = 0 then Result (L .. L + 1) := "." & Path_Separator; L := L + 2; else Result (L .. L + Osint.Dir_In_Src_Search_Path (J)'Length - 1) := Osint.Dir_In_Src_Search_Path (J).all; L := L + Osint.Dir_In_Src_Search_Path (J)'Length; Result (L) := Path_Separator; L := L + 1; end if; end loop; return Result; end; end Parse_Gnatls_Src; ---------------------- -- Parse_Gnatls_Obj -- ---------------------- function Parse_Gnatls_Obj return String is Length : Natural; begin Length := 0; for J in 1 .. Osint.Nb_Dir_In_Obj_Search_Path loop if Osint.Dir_In_Obj_Search_Path (J)'Length = 0 then Length := Length + 2; else Length := Length + Osint.Dir_In_Obj_Search_Path (J)'Length + 1; end if; end loop; declare Result : String (1 .. Length); L : Natural; begin L := Result'First; for J in 1 .. Osint.Nb_Dir_In_Obj_Search_Path loop if Osint.Dir_In_Obj_Search_Path (J)'Length = 0 then Result (L .. L + 1) := "." & Path_Separator; L := L + 2; else Result (L .. L + Osint.Dir_In_Obj_Search_Path (J)'Length - 1) := Osint.Dir_In_Obj_Search_Path (J).all; L := L + Osint.Dir_In_Obj_Search_Path (J)'Length; Result (L) := Path_Separator; L := L + 1; end if; end loop; return Result; end; end Parse_Gnatls_Obj; ------------------- -- Reset_Obj_Dir -- ------------------- procedure Reset_Obj_Dir is begin Directories.Obj_Dir_Index := 1; end Reset_Obj_Dir; ----------------------- -- Set_Default_Match -- ----------------------- procedure Set_Default_Match (Value : Boolean) is begin Default_Match := Value; end Set_Default_Match; ---------- -- Free -- ---------- procedure Free (Str : in out Cst_String_Access) is function Convert is new Ada.Unchecked_Conversion (Cst_String_Access, GNAT.OS_Lib.String_Access); S : GNAT.OS_Lib.String_Access := Convert (Str); begin Free (S); Str := null; end Free; --------------------- -- Reset_Directory -- --------------------- procedure Reset_Directory (File : File_Reference) is begin Free (File.Dir); end Reset_Directory; ------------------- -- Set_Unvisited -- ------------------- procedure Set_Unvisited (File_Ref : File_Reference) is F : constant String := Get_File (File_Ref, With_Dir => False); begin File_Ref.Visited := False; -- Do not add a source file to the list. This is true for gnatxref -- gnatfind, so good enough. if F'Length > 4 and then F (F'Last - 3 .. F'Last) = "." & Osint.ALI_Suffix.all then Unvisited_Files := new Unvisited_Files_Record' (File => File_Ref, Next => Unvisited_Files); end if; end Set_Unvisited; ---------------------- -- Get_Declarations -- ---------------------- function Get_Declarations (Sorted : Boolean := True) return Declaration_Array_Access is Arr : constant Declaration_Array_Access := new Declaration_Array (1 .. Entities_Count); Decl : Declaration_Reference := Entities_HTable.Get_First; Index : Natural := Arr'First; Tmp : Declaration_Reference; procedure Move (From : Natural; To : Natural); function Lt (Op1, Op2 : Natural) return Boolean; -- See GNAT.Heap_Sort_G -------- -- Lt -- -------- function Lt (Op1, Op2 : Natural) return Boolean is begin if Op1 = 0 then return Is_Less_Than (Tmp, Arr (Op2)); elsif Op2 = 0 then return Is_Less_Than (Arr (Op1), Tmp); else return Is_Less_Than (Arr (Op1), Arr (Op2)); end if; end Lt; ---------- -- Move -- ---------- procedure Move (From : Natural; To : Natural) is begin if To = 0 then Tmp := Arr (From); elsif From = 0 then Arr (To) := Tmp; else Arr (To) := Arr (From); end if; end Move; package Decl_Sort is new GNAT.Heap_Sort_G (Move, Lt); -- Start of processing for Get_Declarations begin while Decl /= null loop Arr (Index) := Decl; Index := Index + 1; Decl := Entities_HTable.Get_Next; end loop; if Sorted and then Arr'Length /= 0 then Decl_Sort.Sort (Entities_Count); end if; return Arr; end Get_Declarations; ---------------------- -- References_Count -- ---------------------- function References_Count (Decl : Declaration_Reference; Get_Reads : Boolean := False; Get_Writes : Boolean := False; Get_Bodies : Boolean := False) return Natural is function List_Length (E : Reference) return Natural; -- Return the number of references in E ----------------- -- List_Length -- ----------------- function List_Length (E : Reference) return Natural is L : Natural := 0; E1 : Reference := E; begin while E1 /= null loop L := L + 1; E1 := E1.Next; end loop; return L; end List_Length; Length : Natural := 0; -- Start of processing for References_Count begin if Get_Reads then Length := List_Length (Decl.Ref_Ref); end if; if Get_Writes then Length := Length + List_Length (Decl.Modif_Ref); end if; if Get_Bodies then Length := Length + List_Length (Decl.Body_Ref); end if; return Length; end References_Count; ---------------------- -- Store_References -- ---------------------- procedure Store_References (Decl : Declaration_Reference; Get_Writes : Boolean := False; Get_Reads : Boolean := False; Get_Bodies : Boolean := False; Get_Declaration : Boolean := False; Arr : in out Reference_Array; Index : in out Natural) is procedure Add (List : Reference); -- Add all the references in List to Arr --------- -- Add -- --------- procedure Add (List : Reference) is E : Reference := List; begin while E /= null loop Arr (Index) := E; Index := Index + 1; E := E.Next; end loop; end Add; -- Start of processing for Store_References begin if Get_Declaration then Add (Decl.Decl); end if; if Get_Reads then Add (Decl.Ref_Ref); end if; if Get_Writes then Add (Decl.Modif_Ref); end if; if Get_Bodies then Add (Decl.Body_Ref); end if; end Store_References; -------------------- -- Get_References -- -------------------- function Get_References (Decl : Declaration_Reference; Get_Reads : Boolean := False; Get_Writes : Boolean := False; Get_Bodies : Boolean := False) return Reference_Array_Access is Length : constant Natural := References_Count (Decl, Get_Reads, Get_Writes, Get_Bodies); Arr : constant Reference_Array_Access := new Reference_Array (1 .. Length); Index : Natural := Arr'First; begin Store_References (Decl => Decl, Get_Writes => Get_Writes, Get_Reads => Get_Reads, Get_Bodies => Get_Bodies, Get_Declaration => False, Arr => Arr.all, Index => Index); if Arr'Length /= 0 then Sort (Arr.all); end if; return Arr; end Get_References; ---------- -- Free -- ---------- procedure Free (Arr : in out Reference_Array_Access) is procedure Internal is new Ada.Unchecked_Deallocation (Reference_Array, Reference_Array_Access); begin Internal (Arr); end Free; ------------------ -- Is_Parameter -- ------------------ function Is_Parameter (Decl : Declaration_Reference) return Boolean is begin return Decl.Is_Parameter; end Is_Parameter; end Xr_Tabls;
AdaCore/libadalang
Ada
374
adb
procedure Test is T : array (1 .. 2, 1 .. 2) of Character := (('g', 'h'), (others => 'y')); --% root_aggr = node.f_default_expr --% root_aggr.p_is_subaggregate --% sub_aggr_1 = root_aggr.f_assocs[0].f_r_expr --% sub_aggr_1.p_is_subaggregate --% sub_aggr_2 = root_aggr.f_assocs[1].f_r_expr --% sub_aggr_2.p_is_subaggregate begin null; end Test;
tum-ei-rcs/StratoX
Ada
3,026
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . M E M O R Y _ S E T -- -- -- -- B o d y -- -- -- -- Copyright (C) 2006-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. -- -- -- -- -- -- -- -- -- -- -- -- 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_Conversion; with System; use System; with Interfaces.C; use Interfaces.C; package body System.Memory_Set is subtype Mem_Array is char_array (size_t); type Mem_Ptr is access Mem_Array; function To_Memptr is new Ada.Unchecked_Conversion (Address, Mem_Ptr); ------------ -- memset -- ------------ function Memset (M : Address; C : int; Size : size_t) return Address is Dest : constant Mem_Ptr := To_Memptr (M); begin if Size > 0 then for J in 0 .. Size - 1 loop Dest (J) := char'Val (C); end loop; end if; return M; end Memset; end System.Memory_Set;
reznikmm/matreshka
Ada
4,033
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Dr3d_Texture_Filter_Attributes; package Matreshka.ODF_Dr3d.Texture_Filter_Attributes is type Dr3d_Texture_Filter_Attribute_Node is new Matreshka.ODF_Dr3d.Abstract_Dr3d_Attribute_Node and ODF.DOM.Dr3d_Texture_Filter_Attributes.ODF_Dr3d_Texture_Filter_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Dr3d_Texture_Filter_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Dr3d_Texture_Filter_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Dr3d.Texture_Filter_Attributes;
Componolit/libsparkcrypto
Ada
6,087
adb
------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- Copyright (C) 2018 Componolit GmbH -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- -- * Neither the name of the nor the names of its contributors may be used -- to endorse or promote products derived from this software without -- specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- with AUnit.Assertions; use AUnit.Assertions; with Util; use Util; with LSC.RIPEMD160.HMAC; with LSC.Types; pragma Style_Checks ("-s"); pragma Warnings (Off, "formal parameter ""T"" is not referenced"); package body LSC_Test_HMAC_RIPEMD160 is procedure Test_HMAC (Key : String; Msg : String; Mac : String; Textkey : Boolean := False; Textmsg : Boolean := False) is use type LSC.Types.Bytes; Converted_Key : constant LSC.Types.Bytes := (if Textkey then T2B (Key) else S2B (Key)); Converted_Msg : constant LSC.Types.Bytes := (if Textmsg then T2B (Msg) else S2B (Msg)); Converted_Mac : constant LSC.Types.Bytes := S2B (Mac); Len : constant Natural := Converted_Mac'Length; Result : constant LSC.Types.Bytes := LSC.RIPEMD160.HMAC.HMAC (Key => Converted_Key, Message => Converted_Msg); begin Assert (Result (Result'First .. Result'First + Len - 1) = Converted_Mac, "Invalid HMAC: got " & B2S (Result) & ", expected " & Mac); end Test_HMAC; --------------------------------------------------------------------------- -- RFC 2202 Test vectors --------------------------------------------------------------------------- procedure Test_HMAC_RFC (T : in out Test_Cases.Test_Case'Class) is begin Test_HMAC (Key => "0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b", Msg => "Hi There", Mac => "24cb4bd67d20fc1a5d2ed7732dcc39377f0a5668", Textmsg => True); Test_HMAC (Key => "Jefe", Msg => "what do ya want for nothing?", Mac => "dda6c0213a485a9e24f4742064a7f033b43c4069", Textmsg => True, Textkey => True); Test_HMAC (Key => "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", Msg => "dddddddddddddddddddddddddddddddddddddddddddddddddd" & "dddddddddddddddddddddddddddddddddddddddddddddddddd", Mac => "b0b105360de759960ab4f35298e116e295d8e7c1"); Test_HMAC (Key => "0102030405060708090a0b0c0d0e0f10111213141516171819", Msg => "cdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcd" & "cdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcd", Mac => "d5ca862f4d21d5e610e18b4cf1beb97a4365ecf4"); Test_HMAC (Key => "0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c", Msg => "Test With Truncation", Mac => "7619693978f91d90539ae786500ff3d8e0518e39", Textmsg => True); Test_HMAC (Key => "0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c0c", Msg => "Test With Truncation", Mac => "7619693978f91d90539ae786", Textmsg => True); Test_HMAC (Key => "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" & "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", Msg => "Test Using Larger Than Block-Size Key - Hash Key First", Mac => "6466ca07ac5eac29e1bd523e5ada7605b791fd8b", Textmsg => True); Test_HMAC (Key => "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" & "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", Msg => "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data", Mac => "69ea60798d71616cce5fd0871e23754cd75d5a0a", Textmsg => True); end Test_HMAC_RFC; --------------------------------------------------------------------------- procedure Register_Tests (T : in out Test_Case) is use AUnit.Test_Cases.Registration; begin Register_Routine (T, Test_HMAC_RFC'Access, "HMAC RIPEMD-160 (RFC 2202)"); end Register_Tests; --------------------------------------------------------------------------- function Name (T : Test_Case) return Test_String is begin return Format ("HMAC RIPEMD160"); end Name; end LSC_Test_HMAC_RIPEMD160;
onox/orka
Ada
3,828
ads
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2016 onox <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. package Orka is pragma Pure; type Index_4D is (X, Y, Z, W); subtype Index_2D is Index_4D range X .. Y; subtype Index_3D is Index_4D range X .. Z; ---------------------------------------------------------------------------- -- GL types must have an exact number of bits and may not be equal -- to a similar type in Interfaces.C. -- -- See Table 2.2 of the OpenGL specification. type Integer_8 is range -(2 ** 7) .. +(2 ** 7 - 1) with Size => 8; type Integer_16 is range -(2 ** 15) .. +(2 ** 15 - 1) with Size => 16; type Integer_32 is range -(2 ** 31) .. +(2 ** 31 - 1) with Size => 32; type Integer_64 is range -(2 ** 63) .. +(2 ** 63 - 1) with Size => 64; subtype Size is Integer_32 range 0 .. Integer_32'Last; type Size_3D is array (Index_3D) of Size; type Integer_8_Array is array (Size range <>) of aliased Integer_8 with Convention => C; type Integer_16_Array is array (Size range <>) of aliased Integer_16 with Convention => C; type Integer_32_Array is array (Size range <>) of aliased Integer_32 with Convention => C; ---------------------------------------------------------------------------- type Unsigned_8 is mod 2 ** 8 with Size => 8; type Unsigned_16 is mod 2 ** 16 with Size => 16; type Unsigned_32 is mod 2 ** 32 with Size => 32; type Unsigned_64 is mod 2 ** 64 with Size => 64; type Unsigned_8_Array is array (Size range <>) of aliased Unsigned_8 with Convention => C; type Unsigned_16_Array is array (Size range <>) of aliased Unsigned_16 with Convention => C; type Unsigned_32_Array is array (Size range <>) of aliased Unsigned_32 with Convention => C; ---------------------------------------------------------------------------- subtype Float_16 is Integer_16; -- F16C extension can be used to convert from/to Float_32 type Float_32 is digits 6 range -16#0.FFFF_FF#E+32 .. 16#0.FFFF_FF#E+32; type Float_64 is digits 15 range -16#0.FFFF_FFFF_FFFF_F8#E+256 .. 16#0.FFFF_FFFF_FFFF_F8#E+256; overriding function "=" (Left, Right : Float_32) return Boolean; overriding function "=" (Left, Right : Float_64) return Boolean; type Float_16_Array is array (Size range <>) of aliased Float_16 with Convention => C; type Float_32_Array is array (Size range <>) of aliased Float_32 with Convention => C; type Float_64_Array is array (Size range <>) of aliased Float_64 with Convention => C; ---------------------------------------------------------------------------- type Time is private; function "-" (Left, Right : Time) return Duration; function "-" (Left : Time; Right : Duration) return Time; private overriding function "=" (Left, Right : Float_32) return Boolean is (abs (Left - Right) <= Float_32'Model_Epsilon); overriding function "=" (Left, Right : Float_64) return Boolean is (abs (Left - Right) <= Float_64'Model_Epsilon); type Time is new Duration; function "-" (Left, Right : Time) return Duration is (Duration (Left) - Duration (Right)); function "-" (Left : Time; Right : Duration) return Time is (Time (Duration (Left) - Right)); end Orka;
sparre/Command-Line-Parser-Generator
Ada
681
adb
with Ada.Text_IO; package body Bad_Declares_Function is procedure Batch_Mode (Help : in Boolean := False; A, B : in Natural) is pragma Unreferenced (A, B); begin if Help then Ada.Text_IO.Put_Line ("<help>"); else Ada.Text_IO.Put_Line ("<batch mode>"); end if; end Batch_Mode; function Help_Text return String is begin return "<help text>"; end Help_Text; procedure Run (Help : in Boolean := False) is begin if Help then Ada.Text_IO.Put_Line ("<help>"); else Ada.Text_IO.Put_Line ("<run>"); end if; end Run; end Bad_Declares_Function;
micahwelf/FLTK-Ada
Ada
5,311
adb
with Interfaces.C, System; use type System.Address; package body FLTK.Widgets.Groups.Windows.Double is procedure double_window_set_draw_hook (W, D : in System.Address); pragma Import (C, double_window_set_draw_hook, "double_window_set_draw_hook"); pragma Inline (double_window_set_draw_hook); procedure double_window_set_handle_hook (W, H : in System.Address); pragma Import (C, double_window_set_handle_hook, "double_window_set_handle_hook"); pragma Inline (double_window_set_handle_hook); function new_fl_double_window (X, Y, W, H : in Interfaces.C.int; Text : in Interfaces.C.char_array) return System.Address; pragma Import (C, new_fl_double_window, "new_fl_double_window"); pragma Inline (new_fl_double_window); function new_fl_double_window2 (X, Y : in Interfaces.C.int; Text : in Interfaces.C.char_array) return System.Address; pragma Import (C, new_fl_double_window2, "new_fl_double_window2"); pragma Inline (new_fl_double_window2); procedure free_fl_double_window (W : in System.Address); pragma Import (C, free_fl_double_window, "free_fl_double_window"); pragma Inline (free_fl_double_window); procedure fl_double_window_show (W : in System.Address); pragma Import (C, fl_double_window_show, "fl_double_window_show"); pragma Inline (fl_double_window_show); procedure fl_double_window_hide (W : in System.Address); pragma Import (C, fl_double_window_hide, "fl_double_window_hide"); pragma Inline (fl_double_window_hide); procedure fl_double_window_flush (W : in System.Address); pragma Import (C, fl_double_window_flush, "fl_double_window_flush"); pragma Inline (fl_double_window_flush); procedure fl_double_window_draw (W : in System.Address); pragma Import (C, fl_double_window_draw, "fl_double_window_draw"); pragma Inline (fl_double_window_draw); function fl_double_window_handle (W : in System.Address; E : in Interfaces.C.int) return Interfaces.C.int; pragma Import (C, fl_double_window_handle, "fl_double_window_handle"); pragma Inline (fl_double_window_handle); procedure Finalize (This : in out Double_Window) is begin if This.Void_Ptr /= System.Null_Address and then This in Double_Window'Class then This.Clear; free_fl_double_window (This.Void_Ptr); This.Void_Ptr := System.Null_Address; end if; Finalize (Window (This)); end Finalize; package body Forge is function Create (X, Y, W, H : in Integer; Text : in String) return Double_Window is begin return This : Double_Window do This.Void_Ptr := new_fl_double_window (Interfaces.C.int (X), Interfaces.C.int (Y), Interfaces.C.int (W), Interfaces.C.int (H), Interfaces.C.To_C (Text)); fl_group_end (This.Void_Ptr); fl_widget_set_user_data (This.Void_Ptr, Widget_Convert.To_Address (This'Unchecked_Access)); double_window_set_draw_hook (This.Void_Ptr, Draw_Hook'Address); double_window_set_handle_hook (This.Void_Ptr, Handle_Hook'Address); end return; end Create; function Create (W, H : in Integer; Text : in String) return Double_Window is begin return This : Double_Window do This.Void_Ptr := new_fl_double_window2 (Interfaces.C.int (W), Interfaces.C.int (H), Interfaces.C.To_C (Text)); fl_group_end (This.Void_Ptr); fl_widget_set_user_data (This.Void_Ptr, Widget_Convert.To_Address (This'Unchecked_Access)); double_window_set_draw_hook (This.Void_Ptr, Draw_Hook'Address); double_window_set_handle_hook (This.Void_Ptr, Handle_Hook'Address); end return; end Create; end Forge; procedure Show (This : in out Double_Window) is begin fl_double_window_show (This.Void_Ptr); end Show; procedure Hide (This : in out Double_Window) is begin fl_double_window_hide (This.Void_Ptr); end Hide; procedure Flush (This : in out Double_Window) is begin fl_double_window_flush (This.Void_Ptr); end Flush; procedure Draw (This : in out Double_Window) is begin fl_double_window_draw (This.Void_Ptr); end Draw; function Handle (This : in out Double_Window; Event : in Event_Kind) return Event_Outcome is begin return Event_Outcome'Val (fl_double_window_handle (This.Void_Ptr, Event_Kind'Pos (Event))); end Handle; end FLTK.Widgets.Groups.Windows.Double;
flyx/OpenGLAda
Ada
2,958
ads
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" private with Ada.Containers.Vectors; private with Ada.Containers.Indefinite_Vectors; private with Ada.Strings.Unbounded; package Specs is -- This package implements parsing and applying .spec files. -- These are used to easily generate parts of the low-level OpenGL -- binding code. This package is not part of the OpenGLAda API nor -- implementation - it is only used for generating part of its -- source code. type Processor is limited private; type Spec is private; No_Spec : constant Spec; Parsing_Error : exception; procedure Parse_File (Proc : in out Processor; Path : String); function First (Proc : Processor) return Spec; function Next (Proc : Processor; Cur : Spec) return Spec; procedure Write_API (Proc : Processor; Cur : Spec; Dir_Path : String); procedure Write_Init (Proc : Processor; Dir_Path : String); procedure Write_Wrapper_Table (Proc : Processor; Dir_Path, Interface_Folder : String); private use Ada.Strings.Unbounded; type Param_Mode is (Mode_In, Mode_Out, Mode_In_Out, Mode_Access, Mode_Access_Constant); package String_Lists is new Ada.Containers.Indefinite_Vectors (Positive, String); type Parameter is record Mode : Param_Mode; Names : String_Lists.Vector; Type_Name : Unbounded_String; end record; package Param_Lists is new Ada.Containers.Vectors (Positive, Parameter); type Signature is record Params : Param_Lists.Vector; Return_Type : Unbounded_String; end record; package Sig_Lists is new Ada.Containers.Vectors (Positive, Signature); type Body_Item_Kind is (Copy, Static, Dynamic); type Body_Item (Kind : Body_Item_Kind) is record case Kind is when Copy => To_Copy : Unbounded_String; when Static => S_Name, S_GL_Name : Unbounded_String; Sigs : Sig_Lists.Vector; when Dynamic => D_Name, D_GL_Name : Unbounded_String; Sig_Id : Positive; end case; end record; package Item_Lists is new Ada.Containers.Indefinite_Vectors (Positive, Body_Item); package Wrapper_Lists is new Ada.Containers.Indefinite_Vectors (Positive, String_Lists.Vector, String_Lists."="); type Spec_Data is record Name, File_Base_Name : Unbounded_String; Withs : String_Lists.Vector; Uses : String_Lists.Vector; Items : Item_Lists.Vector; Wrappers : Wrapper_Lists.Vector; end record; type Spec is new Natural; subtype Valid_Spec is Spec range 1 .. Spec'Last; No_Spec : constant Spec := 0; package Spec_Lists is new Ada.Containers.Vectors (Valid_Spec, Spec_Data); type Processor is record Dynamic_Subprogram_Types : Sig_Lists.Vector; List : Spec_Lists.Vector; end record; end Specs;
annexi-strayline/AURA
Ada
31,004
adb
------------------------------------------------------------------------------ -- -- -- Ada User Repository Annex (AURA) -- -- ANNEXI-STRAYLINE Reference Implementation -- -- -- -- Command Line Interface -- -- -- -- ------------------------------------------------------------------------ -- -- -- -- Copyright (C) 2020, ANNEXI-STRAYLINE Trans-Human Ltd. -- -- All rights reserved. -- -- -- -- Original Contributors: -- -- * Richard Wai (ANNEXI-STRAYLINE) -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- -- -- * Neither the name of 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 -- -- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with Ada.Strings.Fixed; with Ada.Text_IO; with Ada.Streams.Stream_IO; with Ada.Assertions; with Ada.Directories; with Ada.Environment_Variables; with Platform_Info; with Registrar.Queries; with Registrar.Registration; with Registrar.Subsystems; with Registrar.Library_Units; with Workers, Workers.Reporting; with Child_Processes.Path_Searching; package body Build.Linking is New_Line: Character renames Workers.Reporting.New_Line; procedure Assert (Check: Boolean; Message: in String) renames Ada.Assertions.Assert; package Program_Paths renames Child_Processes.Path_Searching; Binder_Program: aliased constant String := (Platform_Info.Toolchain_Prefix & "gnatbind"); Binder: constant Program_Paths.Elaboration_Path_Search := Program_Paths.Initialize (Binder_Program); Linker_Program: aliased constant String := Platform_Info.Toolchain_Prefix & "gcc"; Linker: constant Program_Paths.Elaboration_Path_Search := Program_Paths.Initialize (Linker_Program); Archiver_Program: aliased constant String := Platform_Info.Toolchain_Prefix & "ar"; Archiver: constant Program_Paths.Elaboration_Path_Search := Program_Paths.Initialize (Archiver_Program); -- -- Scan_ALI_Order -- type Scan_ALI_Order is new Workers.Work_Order with record Target: Registrar.Library_Units.Library_Unit; end record; overriding function Image (Order: Scan_ALI_Order) return String; overriding procedure Execute (Order: in out Scan_ALI_Order); ----------- -- Image -- ----------- function Image (Order: Scan_ALI_Order) return String is ("[Scan_ALI_Order] (Build.Scan_Linker_Options)" & New_Line & "Target: " & Order.Target.Name.To_UTF8_String); ------------- -- Execute -- ------------- procedure Execute (Order: in out Scan_ALI_Order) is use Ada.Text_IO; use Registrar.Library_Units; -- Avoid using the secondary stack, for efficincy Buffer: String (1 .. 1920); Last : Natural; ALI_File: File_Type; begin pragma Assert (Order.Target.State = Compiled); -- Skip units that are not Ada Library Units if Order.Target.Kind not in Package_Unit | Subprogram_Unit then return; end if; Open (File => ALI_File, Mode => In_File, Name => ALI_File_Name (Order.Target)); -- Fairly simple operation. We'll keep going until we hit the end of the -- file, scanning each line. Linker option lines start with 'L', and then -- a space, and then a quote-enclosed string. We simply take those strings, -- strip the quotes, and slap them onto the queue while not End_Of_File (ALI_File) loop Get_Line (File => ALI_File, Item => Buffer, Last => Last); if Last > Buffer'First -- if Last = Item'First, we definately don't want it anyways and then Buffer(1) = 'L' then pragma Assert (Buffer(3) = '"'); pragma Assert (Buffer(Last) = '"'); Linker_Options.Enqueue (UBS.To_Unbounded_String (Buffer(4 .. Last - 1))); -- L "option" -- ^....^ -- 1234.....Last end if; end loop; Close (ALI_File); exception when others => if Is_Open (ALI_File) then Close (ALI_File); end if; raise; end Execute; ------------------------- -- Scan_Linker_Options -- ------------------------- procedure Scan_Linker_Options (Unit_Set: in Registrar.Library_Units.Library_Unit_Sets.Set) is use Registrar.Library_Units; New_Order: Scan_ALI_Order := (Tracker => Scan_Progress'Access, others => <>); begin Scan_Progress.Increase_Total_Items_By (Natural (Unit_Set.Length)); for Unit of Unit_Set loop New_Order.Target := Unit; Workers.Enqueue_Order (New_Order); end loop; end Scan_Linker_Options; ---------- -- Bind -- ---------- procedure Bind (Unit_Set : in Registrar.Library_Units.Library_Unit_Sets.Set; Configuration: in Build_Configuration; Errors : out UBS.Unbounded_String) is use UBS; use Registrar.Library_Units; use type Ada.Containers.Count_Type; Need_GNARL: Boolean := False; -- GNAT-specific. GNARL is the tasting part of the Ada runtime. Not -- all programs need this, and those that do also need pthreads Args: Unbounded_String; Bind_Output: Unbounded_String; begin pragma Assert (Configuration.Mode in Library | Image); pragma Assert (if Unit_Set.Length = 1 then Configuration.Mode = Image and then Unit_Set(Unit_Set.First).Kind = Subprogram_Unit); pragma Assert (for all Unit of Unit_Set => Unit.Kind in Package_Unit | Subprogram_Unit); -- Verify that we have a binder if not Program_Paths.Found (Binder) then raise Program_Error with "Bind failed: Could not find the binder program (" & Binder_Program & ")."; end if; -- Generate the binder file -- Switches first Set_Unbounded_String (Args, "-x -o ada_main.adb"); if Configuration.Mode = Library then Append (Args, " -n"); elsif Unit_Set.Length > 1 then Append (Args, " -z"); end if; if Configuration.Linking in Static | Static_RT then Append (Args, " -static"); else Append (Args, " -shared"); end if; -- Now add the unit ALI file names for Unit of Unit_Set loop Append (Args, ' ' & ALI_File_Name (Unit)); end loop; -- Keep a record of our command declare use Ada.Text_IO; Path: constant String := Build_Output_Root & "/ada_main.binder.cmd"; CMD_OUT: File_Type; begin if Ada.Directories.Exists (Path) then Open (File => CMD_OUT, Mode => Out_File, Name => Path); else Create (File => CMD_OUT, Name => Path); end if; Put_Line (CMD_OUT, "Binder used:"); Put_Line (CMD_OUT, Program_Paths.Image_Path (Binder)); Put_Line (CMD_OUT, "Arguments used:"); Put_Line (CMD_OUT, To_String (Args)); Close (CMD_OUT); end; -- Execute declare use Child_Processes; Bind_Process: Child_Process'Class := Spawn_Process (Image_Path => Program_Paths.Image_Path (Binder), Arguments => To_String (Args), Working_Directory => Build_Root); Timed_Out: Boolean; Status : Exit_Status; Output : Unbounded_String; begin Output := Null_Unbounded_String; Wait_And_Buffer (Process => Bind_Process, Poll_Rate => 0.1, Timeout => 300.0, Output => Output, Error => Errors, Timed_Out => Timed_Out, Status => Status); if Timed_Out then Bind_Process.Kill; Append (Errors, " [TIMED OUT]"); elsif Status = Failure or else Length (Errors) > 0 then if Length (Errors) = 0 then Append (Errors, "[No error output]"); end if; return; end if; end; -- Successful. Errors is empty. -- Complete by entering the outputed binder unit declare use Ada.Directories; Search : Search_Type; Unit_Source: Directory_Entry_Type; begin Start_Search (Search => Search, Directory => Build_Root, Pattern => "ada_main.ad*"); -- We are expecting exactly two entries for I in 1 .. 2 loop if not More_Entries (Search) then Set_Unbounded_String (Errors, "Could not find the expected binder output."); return; end if; Get_Next_Entry (Search => Search, Directory_Entry => Unit_Source); Registrar.Registration.Enter_Unit (Unit_Source); end loop; if More_Entries (Search) then Set_Unbounded_String (Errors, "Unexpected binder artifacts."); return; end if; End_Search (Search); end; end Bind; -- -- Link Operations -- ------------------ -- Find_Ada_RTS -- ------------------ -- Path to the Ada RTS function Find_Ada_RTS return String is -- This function is very GCC-specific. We want to find the directory -- that contains the actual Ada Run-Time libraries (libgnat and libgnarl) -- These always reside in the location of libgcc, within the directory -- adalib. use UBS; use Ada.Directories; use Child_Processes; GCC_Info: Child_Process'Class := Spawn_Process (Image_Path => Program_Paths.Image_Path (Linker), Arguments => "-print-libgcc-file-name", Working_Directory => Current_Directory); Output, Error: Unbounded_String; Timed_Out : Boolean; Status : Exit_Status; begin Wait_And_Buffer (Process => GCC_Info, Poll_Rate => 0.01, -- Expected to be quick Timeout => 1.0, -- Generous Output => Output, Error => Error, Timed_Out => Timed_Out, Status => Status); Assert (Check => not Timed_Out, Message => "gcc timed out unexpectedly."); Assert (Check => Status = Success and then Length (Error) = 0, Message => "gcc failed unexpectedly."); -- Output now consists of a "full name" to 'libgcc.a'. The containing -- directory of that file contains a directory "adalib", which is what -- we need to return return Containing_Directory (To_String (Output)) & "/adalib"; end Find_Ada_RTS; ----------------- -- Needs_GNARL -- ----------------- -- GNAT-specific. Scans the binder body file looking for the presence of -- "-lgnarl" function Needs_GNARL return Boolean is use Ada.Text_IO; File: File_Type; Test: Character; In_Section : Boolean := False; Section_Test : constant String := "-- BEGIN Object file/option list"; Section_Test_Depth: Positive := Section_Test'First; GNARL_Test : constant String := "-lgnarl"; GNARL_Test_Depth: Positive := GNARL_Test'First; begin Open (File => File, Mode => In_File, Name => Build_Root & "/ada_main.adb"); while not End_Of_File (File) loop Get (File, Test); if not In_Section then if Test = Section_Test(Section_Test_Depth) then if Section_Test_Depth = Section_Test'Last then In_Section := True; else Section_Test_Depth := Section_Test_Depth + 1; end if; else Section_Test_Depth := Section_Test'First; end if; else if Test = GNARL_Test(GNARL_Test_Depth) then if GNARL_Test_Depth = GNARL_Test'Last then Close (File); return True; else GNARL_Test_Depth := GNARL_Test_Depth + 1; end if; else GNARL_Test_Depth := GNARL_Test'First; end if; end if; end loop; -- End of file and we didn't find any -lgnarl Close (File); Assert (In_Section, "Could not find option list in binder source."); return False; exception when Name_Error => raise Name_Error with "Binder source was not found"; end Needs_GNARL; ------------------------ -- Add_Linker_Options -- ------------------------ -- A generalized procedure for adding all the various linker options that -- would be shared between image and library linking procedure Add_Linker_Options (Configuration: in Build_Configuration; Args : in out UBS.Unbounded_String) is use UBS; begin -- Debug options if Configuration.Debug_Enabled then Append (Args, " -g"); end if; -- User-defined linker options declare Option: UBS.Unbounded_String; begin loop select Linker_Options.Dequeue (Option); else exit; end select; Append (Args, ' ' & UBS.To_String (Option)); end loop; end; -- The following options really only apply when we are linking some kind -- of final elf "image" - either an executable or a shared library. -- -- For archives (static libraries), we don't want to include these -- options in "linker options" output provided along-side the archive if Configuration.Mode in Image | Systemize or else (Configuration.Mode = Library and then Configuration.Linking = Static) then -- Initial set-up depending on the linking mode case Configuration.Linking is when Shared => Append (Args, " -shared-libgcc -shared"); -- Only if we are actually creating an executable (image), -- should we add the pie/no-pie flags if Configuration.Mode = Image then if Configuration.Position_Independent then Append (Args, " -pie"); else Append (Args, " -no-pie"); end if; end if; when Static_RT => Append (Args, " -static-libgcc"); when Static => Append (Args, " -static-libgcc"); if Configuration.Position_Independent then Append (Args, " -static-pie"); else Append (Args, " -static"); end if; end case; -- If we are building a shared library, we will add in the -- initialization and finalization symbols to cause elaboration of the -- Ada code via the binder program. if Configuration.Mode = Library and then Configuration.Linking = Shared then Append (Args, " -Wl,-init=adainit,-fini=adafinal"); end if; end if; -- Now all the user libraries for Subsys of Registrar.Queries.Available_Subsystems loop for Lib_Pair of Subsys.Configuration.External_Libraries loop Append (Args, " -l" & To_String (Lib_Pair.Value)); end loop; end loop; end Add_Linker_Options; ----------------- -- Add_Runtime -- ----------------- -- Adds the appropriate libraries or archives for the Ada runtime. This -- must come after the object list in the case of a static rt -- -- For_Archive is set true when building the linker option outbut for -- static archive library builds. This causes only the libgnat and -- libgnarl objects to be rolled into the archive procedure Add_Static_Runtime_Archives (Configuration: in Build_Configuration; Args : in out UBS.Unbounded_String; GNARL : in Boolean := Needs_GNARL; RTS_Dir : in String := Find_Ada_RTS) is -- Add_Static_Runtime_Archives specifically adds the actual archives -- for the static version of the Ada runtime. This subprogram is used -- both by Add_Runtime and Archive. -- -- Add_Runtime uses it to pass to the linker, while Archive uses it -- to include the static runtime archives in the final archive object begin if GNARL then UBS.Append (Args, ' ' & RTS_Dir & (if Configuration.Position_Independent then "/libgnarl_pic.a" else "/libgnarl.a")); end if; UBS.Append (Args, ' ' & RTS_DIR & (if Configuration.Position_Independent then "/libgnat_pic.a" else "/libgnat.a")); end; ---------------------------------------------------------------------- procedure Add_Runtime (Configuration: in Build_Configuration; Args : in out UBS.Unbounded_String) is use UBS; RTS_Dir: constant String := Find_Ada_RTS; GNARL : constant Boolean := Needs_GNARL; -- Note in theory, there should be only one link per run of AURA, so it -- is perfectly fine to elaborate these locally, since it will only -- happen once anyways. begin if GNARL and then Platform_Info.Platform_Family = "unix" then Append (Args, " -pthread"); end if; case Configuration.Linking is when Shared => Append (Args, " -L" & RTS_Dir); Append (Args, " -lgnat"); if GNARL then Append (Args, " -lgnarl"); end if; when Static_RT | Static => Add_Static_Runtime_Archives (Configuration, Args, GNARL, RTS_Dir); end case; end Add_Runtime; ---------------- -- Link_Image -- ---------------- procedure Link_Image (Image_Path : in String; Unit_Set : in Registrar.Library_Units.Library_Unit_Sets.Set; Configuration: in Build_Configuration; Errors : out UBS.Unbounded_String) is use UBS; use Child_Processes; Args: Unbounded_String; begin -- Verify that we can find the Linker if not Program_Paths.Found (Binder) then raise Program_Error with "Link failed: Could not find the linker program (" & Linker_Program & ")."; end if; if Image_Path'Length = 0 then raise Constraint_Error with "Attempt to link without an image path"; end if; Set_Unbounded_String (Args, "-o " & Image_Path); Add_Linker_Options (Configuration, Args); -- Add linker options -- Then the objects declare use Ada.Directories; use Registrar.Library_Units; begin for Unit of Unit_Set loop if Unit.Kind not in Unknown | Subunit then Append (Args, ' ' & Simple_Name (Object_File_Name (Unit))); -- We use Simple_Name and then execute the linker from the -- aura-build subdirectory to avoid any problems with -- overwhelming the arguments of the linker with long path-names -- for each object. It's also a bit nicer to look at when -- debugging end if; end loop; end; -- Finally the Ada Runtime Add_Runtime (Configuration, Args); -- Record the command declare use Ada.Text_IO; Path: constant String := Build_Output_Root & "/ada_main.linker.cmd"; CMD_OUT: File_Type; begin if Ada.Directories.Exists (Path) then Open (File => CMD_OUT, Mode => Out_File, Name => Path); else Create (File => CMD_OUT, Name => Path); end if; Put_Line (CMD_OUT, "Linker used:"); Put_Line (CMD_OUT, Program_Paths.Image_Path (Linker)); Put_Line (CMD_OUT, "Arguments used:"); Put_Line (CMD_OUT, To_String (Args)); Close (CMD_OUT); end; -- Execute declare use Child_Processes; Link_Process: Child_Process'Class := Spawn_Process (Image_Path => Program_Paths.Image_Path (Linker), Arguments => To_String (Args), Working_Directory => Build_Root); Discard : Unbounded_String; Timed_Out: Boolean; Status : Exit_Status; begin Wait_And_Buffer (Process => Link_Process, Poll_Rate => 0.1, Timeout => 300.0, Output => Discard, Error => Errors, Timed_Out => Timed_Out, Status => Status); if Timed_Out then Link_Process.Kill; Append (Errors, " [TIMED OUT]"); elsif Status = Failure and then Length (Errors) = 0 then Set_Unbounded_String (Errors, "[No error output]"); end if; end; end Link_Image; ------------- -- Archive -- ------------- procedure Archive (Archive_Path : in String; Unit_Set : in Registrar.Library_Units.Library_Unit_Sets.Set; Configuration: in Build_Configuration; Errors : out UBS.Unbounded_String) is Args: UBS.Unbounded_String := UBS.To_Unbounded_String ("-rc " & Archive_Path & ' '); GNARL : constant Boolean := Needs_GNARL; RTS_Dir: constant String := Find_Ada_RTS; procedure Output_Linker_Options is use Ada.Strings.Fixed; use Ada.Text_IO; use all type Ada.Strings.Direction; Linker_Options: UBS.Unbounded_String; LO_File: File_Type; Extension_Start: constant Natural := Index (Source => Archive_Path, Pattern => ".", Going => Backward); Path: constant String := Archive_Path (Archive_Path'First .. Extension_Start) & "linkopt"; begin if Extension_Start < Archive_Path'First then -- This will likely be checked by the command processor, -- but this is such a cheap check to make, why not raise Constraint_Error with "Library archive path shall have an extension."; end if; if GNARL and then Platform_Info.Platform_Family = "unix" then UBS.Append (Linker_Options, " -pthread"); end if; Add_Linker_Options (Configuration, Linker_Options); if Ada.Directories.Exists (Path) then Open (File => LO_File, Mode => Out_File, Name => Path); else Create (File => LO_File, Mode => Out_File, Name => Path); end if; Put_Line (File => LO_File, Item => UBS.To_String (Linker_Options)); Close (LO_File); end; begin pragma Assert (Configuration.Mode = Library); -- Verify that we can find the Archiver if not Program_Paths.Found (Archiver) then raise Program_Error with "Archive failed: Could not find the archiver program (" & Archiver_Program & ")."; end if; declare use Ada.Directories; use Registrar.Library_Units; begin for Unit of Unit_Set loop if Unit.Kind not in Unknown | Subunit then UBS.Append (Args, ' ' & Simple_Name (Object_File_Name (Unit))); -- We use Simple_Name and then execute the linker from the -- aura-build subdirectory to avoid any problems with -- overwhelming the arguments of the linker with long path-names -- for each object. It's also a bit nicer to look at when -- debugging end if; end loop; end; -- Add the Ada runtime archives Add_Static_Runtime_Archives (Configuration, Args, GNARL, RTS_Dir); -- Record the command declare use Ada.Text_IO; Path: constant String := Build_Output_Root & "/ada_main.archiver.cmd"; CMD_OUT: File_Type; begin if Ada.Directories.Exists (Path) then Open (File => CMD_OUT, Mode => Out_File, Name => Path); else Create (File => CMD_OUT, Name => Path); end if; Put_Line (CMD_OUT, "Archiver used:"); Put_Line (CMD_OUT, Program_Paths.Image_Path (Archiver)); Put_Line (CMD_OUT, "Arguments used:"); Put_Line (CMD_OUT, UBS.To_String (Args)); Close (CMD_OUT); end; -- Execute declare use Child_Processes; Archive_Process: Child_Process'Class := Spawn_Process (Image_Path => Program_Paths.Image_Path (Archiver), Arguments => UBS.To_String (Args), Working_Directory => Build_Root); Discard : UBS.Unbounded_String; Timed_Out: Boolean; Status : Exit_Status; begin Wait_And_Buffer (Process => Archive_Process, Poll_Rate => 0.1, Timeout => 60.0, Output => Discard, Error => Errors, Timed_Out => Timed_Out, Status => Status); if Timed_Out then Archive_Process.Kill; UBS.Append (Errors, " [TIMED OUT]"); elsif Status = Success then Output_Linker_Options; elsif Status = Failure and then UBS.Length (Errors) = 0 then UBS.Set_Unbounded_String (Errors, "[No error output]"); end if; end; end Archive; --------------------- -- Link_Subsystems -- --------------------- procedure Link_Subsystems is begin -- TODO raise Program_Error with "Not implemented"; end Link_Subsystems; end Build.Linking;
reznikmm/matreshka
Ada
9,304
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); -- GNAT: enforce generation of preinitialized data section instead of -- generation of elaboration code. package Matreshka.Internals.Unicode.Ucd.Core_01EE is pragma Preelaborate; Group_01EE : aliased constant Core_Second_Stage := (16#04# => -- 01EE04 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#20# => -- 01EE20 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#23# => -- 01EE23 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#25# .. 16#26# => -- 01EE25 .. 01EE26 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#28# => -- 01EE28 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#33# => -- 01EE33 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#38# => -- 01EE38 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#3A# => -- 01EE3A (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#3C# .. 16#41# => -- 01EE3C .. 01EE41 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#43# .. 16#46# => -- 01EE43 .. 01EE46 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#48# => -- 01EE48 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#4A# => -- 01EE4A (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#4C# => -- 01EE4C (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#50# => -- 01EE50 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#53# => -- 01EE53 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#55# .. 16#56# => -- 01EE55 .. 01EE56 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#58# => -- 01EE58 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#5A# => -- 01EE5A (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#5C# => -- 01EE5C (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#5E# => -- 01EE5E (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#60# => -- 01EE60 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#63# => -- 01EE63 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#65# .. 16#66# => -- 01EE65 .. 01EE66 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#6B# => -- 01EE6B (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#73# => -- 01EE73 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#78# => -- 01EE78 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#7D# => -- 01EE7D (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#7F# => -- 01EE7F (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#8A# => -- 01EE8A (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#9C# .. 16#A0# => -- 01EE9C .. 01EEA0 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#A4# => -- 01EEA4 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#AA# => -- 01EEAA (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#BC# .. 16#EF# => -- 01EEBC .. 01EEEF (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#F0# .. 16#F1# => -- 01EEF0 .. 01EEF1 (Math_Symbol, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base | Math => True, others => False)), 16#F2# .. 16#FF# => -- 01EEF2 .. 01EEFF (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), others => (Other_Letter, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Other_Math | Alphabetic | Grapheme_Base | ID_Continue | ID_Start | Math | XID_Continue | XID_Start | Changes_When_NFKC_Casefolded => True, others => False))); end Matreshka.Internals.Unicode.Ucd.Core_01EE;
reznikmm/matreshka
Ada
4,728
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Text_Hidden_Text_Elements; package Matreshka.ODF_Text.Hidden_Text_Elements is type Text_Hidden_Text_Element_Node is new Matreshka.ODF_Text.Abstract_Text_Element_Node and ODF.DOM.Text_Hidden_Text_Elements.ODF_Text_Hidden_Text with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Text_Hidden_Text_Element_Node; overriding function Get_Local_Name (Self : not null access constant Text_Hidden_Text_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Text_Hidden_Text_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Text_Hidden_Text_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Text_Hidden_Text_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Text.Hidden_Text_Elements;
1Crazymoney/LearnAda
Ada
594
adb
package body Taszkseged is task body Szemafor is Bent: Natural := 0; begin loop select when Bent < Max => accept P; Bent := Bent + 1; or accept V; Bent := Bent - 1; or terminate; end select; end loop; end Szemafor; protected body Veletlen is procedure Reset is begin Ada.Numerics.Float_Random.Reset(G); Inicializalt := True; end Reset; entry General( F: out Float ) when Inicializalt is begin F := Ada.Numerics.Float_Random.Random(G); end General; end Veletlen; begin Veletlen.Reset; end Taszkseged;
BrickBot/Bound-T-H8-300
Ada
3,899
adb
-- Flow.Const.Opt (body) -- -- A component of the Bound-T Worst-Case Execution Time Tool. -- ------------------------------------------------------------------------------- -- Copyright (c) 1999 .. 2015 Tidorum Ltd -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- 1. Redistributions of source code must retain the above copyright notice, this -- list of conditions and the following disclaimer. -- 2. Redistributions in binary form must reproduce the above copyright notice, -- this list of conditions and the following disclaimer in the documentation -- and/or other materials provided with the distribution. -- -- This software is provided by the copyright holders and contributors "as is" and -- any express or implied warranties, including, but not limited to, the implied -- warranties of merchantability and fitness for a particular purpose are -- disclaimed. In no event shall the copyright owner or contributors be liable for -- any direct, indirect, incidental, special, exemplary, or consequential damages -- (including, but not limited to, procurement of substitute goods or services; -- loss of use, data, or profits; or business interruption) however caused and -- on any theory of liability, whether in contract, strict liability, or tort -- (including negligence or otherwise) arising in any way out of the use of this -- software, even if advised of the possibility of such damage. -- -- Other modules (files) of this software composition should contain their -- own copyright statements, which may have different copyright and usage -- conditions. The above conditions apply to this file. ------------------------------------------------------------------------------- -- -- $Revision: 1.3 $ -- $Date: 2015/10/24 20:05:48 $ -- -- $Log: flow-const-opt.adb,v $ -- Revision 1.3 2015/10/24 20:05:48 niklas -- Moved to free licence. -- -- Revision 1.2 2013/12/20 21:09:41 niklas -- Added Resolve_Opt (option -const_resolve), to control the use of -- constant propagation for resolving dynamic flow and stack usage. -- This was useful when testing SWEET for dynamic jump analysis. -- -- Revision 1.1 2011-08-31 04:17:12 niklas -- Added for BT-CH-0222: Option registry. Option -dump. External help files. -- with Options; with Options.Groups; package body Flow.Const.Opt is Const_Trace : constant Options.Groups_T := ( Options.Groups.Const_Prop, Options.Groups.Trace); begin Options.Register ( Option => Propagate_Opt'access, Name => "const", Groups => (Options.Groups.Const_Prop, Options.Groups.Analysis)); Options.Register ( Option => Relative_Values_Opt'access, Name => Options.Imp_Item ("const_rel"), Groups => (Options.Groups.Const_Prop, Options.Groups.Imp)); Options.Register ( Option => Trace_Iteration_Opt'access, Name => Options.Trace_Item ("const_fixp"), Groups => Const_Trace); Options.Register ( Option => Show_Results_Opt'access, Name => Options.Trace_Item ("const"), Groups => Const_Trace); Options.Register ( Option => Refine_Opt'access, Name => "const_refine", Group => Options.Groups.Const_Prop); Options.Register ( Option => Trace_Refinements_Opt'access, Name => Options.Trace_Item ("refine"), Groups => Const_Trace); Options.Register ( Option => Resolve_Opt'access, Name => "const_resolve", Groups => (Options.Groups.Const_Prop, Options.Groups.Control_Flow)); Options.Register ( Option => Max_Pointer_Iterations_Opt'access, Name => "const_iter", Groups => (Options.Groups.Const_Prop, Options.Groups.Resource_Limits)); end Flow.Const.Opt;
MinimSecure/unum-sdk
Ada
833
adb
-- Copyright 2008-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/>. package body Pck is procedure Do_Nothing (C : in out Circle) is begin null; end Do_Nothing; end Pck;
riccardo-bernardini/eugen
Ada
2,764
adb
with Ada.Finalization; use Ada.Finalization; with EU_Projects.Nodes.Action_Nodes.WPs; package body EU_Projects.Nodes.Timed_Nodes.Milestones is ------------ -- Create -- ------------ function Create (Label : Milestone_Label; Name : String; Short_Name : String; Description : String; Due_On : String; Node_Dir : in out Node_Tables.Node_Table; Verification : String) return Milestone_Access is Result : Milestone_Access; begin Result := new Milestone'(Controlled with Label => Node_Label (Label), Name => To_Unbounded_String (Name), Short_Name => Shortify (Short_Name, Name), Class => Milestone_Node, Index => No_Milestone, Description => To_Unbounded_String (Description), Attributes => Attribute_Maps.Empty_Map, Expected_On => <>, Expected_Raw => To_Unbounded_String (Due_On), Expected_Symbolic => <>, Deliv => Node_Label_Lists.Empty_Vector, Fixed => False, Verification => To_Unbounded_String (Verification)); Node_Dir.Insert (ID => Node_Label (Label), Item => Node_Access (Result)); return Result; end Create; --------------------- -- Add_Deliverable -- --------------------- procedure Add_Deliverable (Item : in out Milestone; Deliv : Node_Label) is begin Item.Deliv.Append (Deliv); end Add_Deliverable; --------------- -- Set_Index -- --------------- procedure Set_Index (Item : in out Milestone; Idx : Milestone_Index) is begin if Item.Index /= No_Index and Item.Index /= Node_Index (Idx) then raise Constraint_Error; else Item.Index := Node_Index (Idx); end if; end Set_Index; ------------------ -- Update_Index -- ------------------ procedure Update_Index (Item : in out Milestone; Idx : Milestone_Index) is begin if Item.Index = No_Index then raise Constraint_Error; else Item.Index := Node_Index (Idx); end if; end Update_Index; end EU_Projects.Nodes.Timed_Nodes.Milestones;
sebsgit/textproc
Ada
620
ads
with Histogram; with PixelArray; with ImageRegions; with ImageThresholds; package HistogramGenerator is pragma Assertion_Policy (Pre => Check, Post => Check, Type_Invariant => Check); function verticalProjection(image: PixelArray.ImagePlane; r: ImageRegions.Rect) return Histogram.Data with Post => verticalProjection'Result.size = r.height; function horizontalProjection(image: PixelArray.ImagePlane; r: ImageRegions.Rect) return Histogram.Data with Post => horizontalProjection'Result.size = r.width; end HistogramGenerator;
jhumphry/auto_counters
Ada
2,115
ads
-- flyweights-untracked_lists.ads -- A package of singly-linked lists for the Flyweights packages without resource -- tracking or release -- Copyright (c) 2016, James Humphry -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -- PERFORMANCE OF THIS SOFTWARE. pragma Profile (No_Implementation_Extensions); with Flyweights_Lists_Spec; generic type Element(<>) is limited private; type Element_Access is access Element; with function "=" (Left, Right : in Element) return Boolean is <>; package Flyweights.Untracked_Lists is type Node is private; type List is access Node; Empty_List : constant List := null; procedure Insert (L : in out List; E : in out Element_Access); procedure Increment (L : in out List; E : in Element_Access); procedure Remove (L : in out List; Data_Ptr : in Element_Access); package Lists_Spec is new Flyweights_Lists_Spec(Element_Access => Element_Access, List => List, Empty_List => Empty_List, Insert => Insert, Increment => Increment, Remove => Remove); private subtype Node_Access is List; type Node is record Next : Node_Access; Data : Element_Access; end record; end Flyweights.Untracked_Lists;
optikos/oasis
Ada
8,186
ads
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Lexical_Elements; with Program.Element_Vectors; with Program.Elements.Defining_Names; with Program.Elements.Aspect_Specifications; with Program.Elements.Expressions; with Program.Elements.Generic_Package_Declarations; with Program.Element_Visitors; package Program.Nodes.Generic_Package_Declarations is pragma Preelaborate; type Generic_Package_Declaration is new Program.Nodes.Node and Program.Elements.Generic_Package_Declarations .Generic_Package_Declaration and Program.Elements.Generic_Package_Declarations .Generic_Package_Declaration_Text with private; function Create (Generic_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Formal_Parameters : Program.Element_Vectors.Element_Vector_Access; Package_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Name : not null Program.Elements.Defining_Names .Defining_Name_Access; With_Token : Program.Lexical_Elements.Lexical_Element_Access; Aspects : Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access; Is_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Visible_Declarations : Program.Element_Vectors.Element_Vector_Access; Private_Token : Program.Lexical_Elements.Lexical_Element_Access; Private_Declarations : Program.Element_Vectors.Element_Vector_Access; End_Token : not null Program.Lexical_Elements .Lexical_Element_Access; End_Name : Program.Elements.Expressions.Expression_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Generic_Package_Declaration; type Implicit_Generic_Package_Declaration is new Program.Nodes.Node and Program.Elements.Generic_Package_Declarations .Generic_Package_Declaration with private; function Create (Formal_Parameters : Program.Element_Vectors.Element_Vector_Access; Name : not null Program.Elements.Defining_Names .Defining_Name_Access; Aspects : Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access; Visible_Declarations : Program.Element_Vectors.Element_Vector_Access; Private_Declarations : Program.Element_Vectors.Element_Vector_Access; End_Name : Program.Elements.Expressions.Expression_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Generic_Package_Declaration with Pre => Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance; private type Base_Generic_Package_Declaration is abstract new Program.Nodes.Node and Program.Elements.Generic_Package_Declarations .Generic_Package_Declaration with record Formal_Parameters : Program.Element_Vectors.Element_Vector_Access; Name : not null Program.Elements.Defining_Names .Defining_Name_Access; Aspects : Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access; Visible_Declarations : Program.Element_Vectors.Element_Vector_Access; Private_Declarations : Program.Element_Vectors.Element_Vector_Access; End_Name : Program.Elements.Expressions.Expression_Access; end record; procedure Initialize (Self : aliased in out Base_Generic_Package_Declaration'Class); overriding procedure Visit (Self : not null access Base_Generic_Package_Declaration; Visitor : in out Program.Element_Visitors.Element_Visitor'Class); overriding function Formal_Parameters (Self : Base_Generic_Package_Declaration) return Program.Element_Vectors.Element_Vector_Access; overriding function Name (Self : Base_Generic_Package_Declaration) return not null Program.Elements.Defining_Names.Defining_Name_Access; overriding function Aspects (Self : Base_Generic_Package_Declaration) return Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access; overriding function Visible_Declarations (Self : Base_Generic_Package_Declaration) return Program.Element_Vectors.Element_Vector_Access; overriding function Private_Declarations (Self : Base_Generic_Package_Declaration) return Program.Element_Vectors.Element_Vector_Access; overriding function End_Name (Self : Base_Generic_Package_Declaration) return Program.Elements.Expressions.Expression_Access; overriding function Is_Generic_Package_Declaration_Element (Self : Base_Generic_Package_Declaration) return Boolean; overriding function Is_Declaration_Element (Self : Base_Generic_Package_Declaration) return Boolean; type Generic_Package_Declaration is new Base_Generic_Package_Declaration and Program.Elements.Generic_Package_Declarations .Generic_Package_Declaration_Text with record Generic_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Package_Token : not null Program.Lexical_Elements .Lexical_Element_Access; With_Token : Program.Lexical_Elements.Lexical_Element_Access; Is_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Private_Token : Program.Lexical_Elements.Lexical_Element_Access; End_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access; end record; overriding function To_Generic_Package_Declaration_Text (Self : aliased in out Generic_Package_Declaration) return Program.Elements.Generic_Package_Declarations .Generic_Package_Declaration_Text_Access; overriding function Generic_Token (Self : Generic_Package_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Package_Token (Self : Generic_Package_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function With_Token (Self : Generic_Package_Declaration) return Program.Lexical_Elements.Lexical_Element_Access; overriding function Is_Token (Self : Generic_Package_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Private_Token (Self : Generic_Package_Declaration) return Program.Lexical_Elements.Lexical_Element_Access; overriding function End_Token (Self : Generic_Package_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Semicolon_Token (Self : Generic_Package_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access; type Implicit_Generic_Package_Declaration is new Base_Generic_Package_Declaration with record Is_Part_Of_Implicit : Boolean; Is_Part_Of_Inherited : Boolean; Is_Part_Of_Instance : Boolean; end record; overriding function To_Generic_Package_Declaration_Text (Self : aliased in out Implicit_Generic_Package_Declaration) return Program.Elements.Generic_Package_Declarations .Generic_Package_Declaration_Text_Access; overriding function Is_Part_Of_Implicit (Self : Implicit_Generic_Package_Declaration) return Boolean; overriding function Is_Part_Of_Inherited (Self : Implicit_Generic_Package_Declaration) return Boolean; overriding function Is_Part_Of_Instance (Self : Implicit_Generic_Package_Declaration) return Boolean; end Program.Nodes.Generic_Package_Declarations;
jwarwick/aoc_2020
Ada
180
ads
-- AOC 2020, Day 8 package Day is function acc_before_repeat(filename : in String) return Integer; function acc_after_terminate(filename : in String) return Integer; end Day;
AdaCore/training_material
Ada
1,483
ads
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; package avx5124vnniwintrin_h is -- Copyright (C) 2015-2017 Free Software Foundation, Inc. -- This file is part of GCC. -- GCC 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. -- GCC 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. -- 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/>. -- skipped func _mm512_4dpwssd_epi32 -- skipped func _mm512_mask_4dpwssd_epi32 -- skipped func _mm512_maskz_4dpwssd_epi32 -- skipped func _mm512_4dpwssds_epi32 -- skipped func _mm512_mask_4dpwssds_epi32 -- skipped func _mm512_maskz_4dpwssds_epi32 end avx5124vnniwintrin_h;
reznikmm/matreshka
Ada
3,806
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- XML Processor -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.XML_Schema.AST.Model_Groups; package body XML.Schema.Objects.Terms.Model_Groups.Internals is ------------ -- Create -- ------------ function Create (Node : Matreshka.XML_Schema.AST.Model_Group_Access) return XS_Model_Group is begin return (Ada.Finalization.Controlled with Node => Matreshka.XML_Schema.AST.Object_Access (Node)); end Create; end XML.Schema.Objects.Terms.Model_Groups.Internals;
charlie5/lace
Ada
476
ads
private package GID.Decoding_BMP is -------------------- -- Image decoding -- -------------------- generic type Primary_color_range is mod <>; with procedure Set_X_Y (x, y: Natural); with procedure Put_Pixel ( red, green, blue : Primary_color_range; alpha : Primary_color_range ); with procedure Feedback (percents: Natural); -- procedure Load (image: in out Image_descriptor); end GID.Decoding_BMP;
stcarrez/swagger-ada
Ada
1,127
adb
----------------------------------------------------------------------- -- swagger_harness -- Unit tests -- Copyright (C) 2017, 2019 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Swagger.Testsuite; with Util.Tests; with Util.Http.Clients.AWS; procedure Swagger_Harness_Aws is procedure Harness is new Util.Tests.Harness (Swagger.Testsuite.Suite); begin Util.Http.Clients.AWS.Register; Harness ("swagger-tests.xml"); end Swagger_Harness_Aws;
shinesolutions/swagger-aem-osgi
Ada
1,701,502
ads
-- Adobe Experience Manager OSGI config (AEM) API -- Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API -- -- OpenAPI spec version: 1.0.0_pre.0 -- Contact: [email protected] -- -- NOTE: This package is auto generated by the swagger code generator 3.2.1-SNAPSHOT. -- https://openapi-generator.tech -- Do not edit the class manually. with Swagger.Servers; with .Models; with Security.Permissions; package .Skeletons is use .Models; type Server_Type is limited interface; -- procedure Adaptive_Form_And_Interactive_Communication_Web_Channel_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Show_Placeholder : in Swagger.Nullable_Boolean; Maximum_Cache_Entries : in Swagger.Nullable_Integer; Af_Periodscripting_Periodcompatversion : in Swagger.Nullable_UString; Make_File_Name_Unique : in Swagger.Nullable_Boolean; Generating_Compliant_Data : in Swagger.Nullable_Boolean; Result : out .Models.AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Adaptive_Form_And_Interactive_Communication_Web_Channel_Theme_Configur (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Font_List : in Swagger.UString_Vectors.Vector; Result : out .Models.AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Analytics_Component_Query_Cache_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodcomponent_Periodquery_Periodcache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.AnalyticsComponentQueryCacheServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Apache_Sling_Health_Check_Result_H_T_M_L_Serializer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Style_String : in Swagger.Nullable_UString; Result : out .Models.ApacheSlingHealthCheckResultHTMLSerializerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Aem_Formsndocuments_Config_A_E_M_Forms_Manager_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forms_Manager_Config_Periodinclude_O_O_T_B_Templates : in Swagger.Nullable_Boolean; Forms_Manager_Config_Periodinclude_Deprecated_Templates : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Aem_Transaction_Core_Impl_Transaction_Recorder (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Transaction_Recording_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeAemTransactionCoreImplTransactionRecorderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Deprecate_Indexes_H_C (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Replication_Agents_Disabled_H_C (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Mbean_Impl_Pre_Upgrade_Tasks_M_Bean_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pre_Upgrade_Periodmaintenance_Periodtasks : in Swagger.UString_Vectors.Vector; Pre_Upgrade_Periodhc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Tasks_Impl_Consistency_Check_Task_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Root_Periodpath : in Swagger.Nullable_UString; Fix_Periodinconsistencies : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Account_Api_Account_Management_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaccountmanager_Periodtoken_Periodvalidity_Periodperiod : in Swagger.Nullable_Integer; Cq_Periodaccountmanager_Periodconfig_Periodrequestnewaccount_Periodmail : in Swagger.Nullable_UString; Cq_Periodaccountmanager_Periodconfig_Periodrequestnewpwd_Periodmail : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAccountApiAccountManagementServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Account_Impl_Account_Management_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaccountmanager_Periodconfig_Periodinformnewaccount_Periodmail : in Swagger.Nullable_UString; Cq_Periodaccountmanager_Periodconfig_Periodinformnewpwd_Periodmail : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAccountImplAccountManagementServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Address_Impl_Location_Location_List_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaddress_Periodlocation_Perioddefault_Periodmax_Results : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqAddressImplLocationLocationListServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Audit_Purge_Dam (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlog_Periodrule_Periodname : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodcontentpath : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodminimumage : in Swagger.Nullable_Integer; Auditlog_Periodrule_Periodtypes : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAuditPurgeDamInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Audit_Purge_Pages (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlog_Periodrule_Periodname : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodcontentpath : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodminimumage : in Swagger.Nullable_Integer; Auditlog_Periodrule_Periodtypes : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAuditPurgePagesInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Audit_Purge_Replication (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlog_Periodrule_Periodname : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodcontentpath : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodminimumage : in Swagger.Nullable_Integer; Auditlog_Periodrule_Periodtypes : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAuditPurgeReplicationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_A_W_S_Cloud_Front_Rewriter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Keypair_Periodid : in Swagger.Nullable_UString; Keypair_Periodalias : in Swagger.Nullable_UString; Cdnrewriter_Periodattributes : in Swagger.UString_Vectors.Vector; Cdn_Periodrewriter_Perioddistribution_Perioddomain : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Config_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cdn_Periodconfig_Perioddistribution_Perioddomain : in Swagger.Nullable_UString; Cdn_Periodconfig_Periodenable_Periodrewriting : in Swagger.Nullable_Boolean; Cdn_Periodconfig_Periodpath_Periodprefixes : in Swagger.UString_Vectors.Vector; Cdn_Periodconfig_Periodcdnttl : in Swagger.Nullable_Integer; Cdn_Periodconfig_Periodapplication_Periodprotocol : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCdnRewriterImplCDNConfigServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Rewriter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Cdnrewriter_Periodattributes : in Swagger.UString_Vectors.Vector; Cdn_Periodrewriter_Perioddistribution_Perioddomain : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCdnRewriterImplCDNRewriterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Cloudconfig_Core_Impl_Configuration_Replication_Event_Handle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Flush_Periodagents : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Dynamic_Image_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodactive : in Swagger.Nullable_Boolean; Cq_Periodcommerce_Periodasset_Periodhandler_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetDynamicImageHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Product_Asset_Handler_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodfallback : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Static_Image_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodactive : in Swagger.Nullable_Boolean; Cq_Periodcommerce_Periodasset_Periodhandler_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetStaticImageHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Video_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodactive : in Swagger.Nullable_Boolean; Cq_Periodcommerce_Periodasset_Periodhandler_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetVideoHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Commerce_Impl_Promotion_Promotion_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodpromotion_Periodroot : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplPromotionPromotionManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Cataloggenerator_Catalog_Generator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodcataloggenerator_Periodbucketsize : in Swagger.Nullable_Integer; Cq_Periodcommerce_Periodcataloggenerator_Periodbucketname : in Swagger.Nullable_UString; Cq_Periodcommerce_Periodcataloggenerator_Periodexcludedtemplateproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Page_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodpageeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqCommercePimImplPageEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Productfeed_Product_Feed_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Feed generator algorithm : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Contentinsight_Impl_Reporting_Services_Settings_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Reportingservices_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqContentinsightImplReportingServicesSettingsProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Contentinsight_Impl_Servlets_Bright_Edge_Proxy_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Brightedge_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Contentinsight_Impl_Servlets_Reporting_Services_Proxy_Servle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Reportingservices_Periodproxy_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqContentinsightImplServletsReportingServicesProxyServleInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Component_Component_Config_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dam_Periodcfm_Periodcomponent_Periodresource_Type : in Swagger.Nullable_UString; Dam_Periodcfm_Periodcomponent_Periodfile_Reference_Prop : in Swagger.Nullable_UString; Dam_Periodcfm_Periodcomponent_Periodelements_Prop : in Swagger.Nullable_UString; Dam_Periodcfm_Periodcomponent_Periodvariation_Prop : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplComponentComponentConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Conf_Feature_Config_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dam_Periodcfm_Periodresource_Types : in Swagger.UString_Vectors.Vector; Dam_Periodcfm_Periodreference_Properties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqDamCfmImplConfFeatureConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Asset_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pipeline_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplContentRewriterAssetProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Par_Range_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pipeline_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplContentRewriterParRangeFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Payload_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pipeline_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplContentRewriterPayloadFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Dm_Process_Image_P_Tiff_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Memory : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamDmProcessImagePTiffManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Ips_Impl_Replication_Trigger_Replicate_On_Modify_Worker (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dmreplicateonmodify_Periodenabled : in Swagger.Nullable_Boolean; Dmreplicateonmodify_Periodforcesyncdeletes : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Mac_Sync_Helper_Impl_M_A_C_Sync_Client_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Perioddam_Periodmac_Periodsync_Periodclient_Periodso_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamMacSyncHelperImplMACSyncClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Mac_Sync_Impl_D_A_M_Sync_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodregistered_Paths : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodsync_Periodrenditions : in Swagger.Nullable_Boolean; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodreplicate_Periodthread_Periodwait_Periodms : in Swagger.Nullable_Integer; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodplatform : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamMacSyncImplDAMSyncServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Processor_Nui_Impl_Nui_Asset_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Nui_Enabled : in Swagger.Nullable_Boolean; Nui_Service_Url : in Swagger.Nullable_UString; Nui_Api_Key : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamProcessorNuiImplNuiAssetProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_S7imaging_Impl_Is_Image_Server_Component (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Tcp_Port : in Swagger.Nullable_UString; Allow_Remote_Access : in Swagger.Nullable_Boolean; Max_Render_Rgn_Pixels : in Swagger.Nullable_UString; Max_Message_Size : in Swagger.Nullable_UString; Random_Access_Url_Timeout : in Swagger.Nullable_Integer; Worker_Threads : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamS7imagingImplIsImageServerComponentInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_S7imaging_Impl_Ps_Platform_Server_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cache_Periodenable : in Swagger.Nullable_Boolean; Cache_Periodroot_Paths : in Swagger.UString_Vectors.Vector; Cache_Periodmax_Size : in Swagger.Nullable_Integer; Cache_Periodmax_Entries : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamS7imagingImplPsPlatformServerServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Asset_I_O_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Path_Prefix : in Swagger.Nullable_UString; Create_Version : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqDamWebdavImplIoAssetIOHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Dam_Webdav_Version_Linking_Job (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodwebdav_Periodversion_Periodlinking_Periodenable : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodwebdav_Periodversion_Periodlinking_Periodscheduler_Periodperiod : in Swagger.Nullable_Integer; Cq_Perioddam_Periodwebdav_Periodversion_Periodlinking_Periodstaging_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Special_Files_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodday_Periodcq_Perioddam_Periodcore_Periodimpl_Periodio_Period_Special_Files_Handler_Periodfilepatters : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqDamWebdavImplIoSpecialFilesHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Deserfw_Impl_Deserialization_Firewall_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Firewall_Perioddeserialization_Periodwhitelist : in Swagger.UString_Vectors.Vector; Firewall_Perioddeserialization_Periodblacklist : in Swagger.UString_Vectors.Vector; Firewall_Perioddeserialization_Perioddiagnostics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDeserfwImplDeserializationFirewallImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dtm_Impl_Service_D_T_M_Web_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Connection_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDtmImplServiceDTMWebServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dtm_Impl_Servlets_D_T_M_Deploy_Hook_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dtm_Periodstaging_Periodip_Periodwhitelist : in Swagger.UString_Vectors.Vector; Dtm_Periodproduction_Periodip_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqDtmImplServletsDTMDeployHookServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Dtm_Reactor_Impl_Service_Web_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Endpoint_Uri : in Swagger.Nullable_UString; Connection_Timeout : in Swagger.Nullable_Integer; Socket_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDtmReactorImplServiceWebServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Experiencelog_Impl_Experience_Log_Config_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Disabled_For_Groups : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqExperiencelogImplExperienceLogConfigServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Hc_Content_Packages_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Package_Periodnames : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqHcContentPackagesHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_History_Impl_History_Request_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; History_Periodrequest_Filter_Periodexcluded_Selectors : in Swagger.UString_Vectors.Vector; History_Periodrequest_Filter_Periodexcluded_Extensions : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqHistoryImplHistoryRequestFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_History_Impl_History_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; History_Periodservice_Periodresource_Types : in Swagger.UString_Vectors.Vector; History_Periodservice_Periodpath_Filter : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqHistoryImplHistoryServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Inbox_Impl_Typeprovider_Item_Type_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Inbox_Periodimpl_Periodtypeprovider_Periodregistrypaths : in Swagger.UString_Vectors.Vector; Inbox_Periodimpl_Periodtypeprovider_Periodlegacypaths : in Swagger.UString_Vectors.Vector; Inbox_Periodimpl_Periodtypeprovider_Perioddefaulturl_Periodfailureitem : in Swagger.Nullable_UString; Inbox_Periodimpl_Periodtypeprovider_Perioddefaulturl_Periodworkitem : in Swagger.Nullable_UString; Inbox_Periodimpl_Periodtypeprovider_Perioddefaulturl_Periodtask : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqInboxImplTypeproviderItemTypeProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Projects_Impl_Servlet_Project_Image_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Image_Periodquality : in Swagger.Nullable_UString; Image_Periodsupported_Periodresolutions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqProjectsImplServletProjectImageServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Projects_Purge_Scheduler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduledpurge_Periodname : in Swagger.Nullable_UString; Scheduledpurge_Periodpurge_Active : in Swagger.Nullable_Boolean; Scheduledpurge_Periodtemplates : in Swagger.UString_Vectors.Vector; Scheduledpurge_Periodpurge_Groups : in Swagger.Nullable_Boolean; Scheduledpurge_Periodpurge_Assets : in Swagger.Nullable_Boolean; Scheduledpurge_Periodterminate_Running_Workflows : in Swagger.Nullable_Boolean; Scheduledpurge_Perioddaysold : in Swagger.Nullable_Integer; Scheduledpurge_Periodsave_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqProjectsPurgeSchedulerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Scheduled_Exporter_Impl_Scheduled_Exporter_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Include_Periodpaths : in Swagger.UString_Vectors.Vector; Exporter_Perioduser : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScheduledExporterImplScheduledExporterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Analytics_Impl_Screens_Analytics_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodurl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodapikey : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodproject : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodenvironment : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodsend_Frequency : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Device_Impl_Device_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodaem_Periodscreens_Periodplayer_Periodpingfrequency : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodspecialchars : in Swagger.Nullable_UString; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminlowercasechars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminuppercasechars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminnumberchars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminspecialchars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminlength : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensDeviceImplDeviceServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Device_Registration_Impl_Registration_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Device_Registration_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Impl_Handler_Channels_Update_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodimageresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodproductresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodvideoresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Perioddynamicsequenceresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodpreviewmodepaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqScreensImplHandlerChannelsUpdateHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Impl_Jobs_Distributed_Devices_Stati_Update_Job (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Impl_Remote_Impl_Distributed_Http_Client_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodaem_Periodscreens_Periodimpl_Periodremote_Periodrequest_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Impl_Screens_Channel_Post_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Screens_Periodchannels_Periodproperties_Periodto_Periodremove : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqScreensImplScreensChannelPostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodproject_Path : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodschedule_Frequency : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodping_Timeout : in Swagger.Nullable_Integer; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodrecipients : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodsmtpserver : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodsmtpport : in Swagger.Nullable_Integer; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodusetls : in Swagger.Nullable_Boolean; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodusername : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodpassword : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Mq_Activemq_Impl_Artemis_J_M_S_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Global_Periodsize : in Swagger.Nullable_Integer; Max_Perioddisk_Periodusage : in Swagger.Nullable_Integer; Persistence_Periodenabled : in Swagger.Nullable_Boolean; Thread_Periodpool_Periodmax_Periodsize : in Swagger.Nullable_Integer; Scheduled_Periodthread_Periodpool_Periodmax_Periodsize : in Swagger.Nullable_Integer; Graceful_Periodshutdown_Periodtimeout : in Swagger.Nullable_Integer; Queues : in Swagger.UString_Vectors.Vector; Topics : in Swagger.UString_Vectors.Vector; Addresses_Periodmax_Perioddelivery_Periodattempts : in Swagger.Nullable_Integer; Addresses_Periodexpiry_Perioddelay : in Swagger.Nullable_Integer; Addresses_Periodaddress_Periodfull_Periodmessage_Periodpolicy : in Swagger.Nullable_UString; Addresses_Periodmax_Periodsize_Periodbytes : in Swagger.Nullable_Integer; Addresses_Periodpage_Periodsize_Periodbytes : in Swagger.Nullable_Integer; Addresses_Periodpage_Periodcache_Periodmax_Periodsize : in Swagger.Nullable_Integer; Cluster_Perioduser : in Swagger.Nullable_UString; Cluster_Periodpassword : in Swagger.Nullable_UString; Cluster_Periodcall_Periodtimeout : in Swagger.Nullable_Integer; Cluster_Periodcall_Periodfailover_Periodtimeout : in Swagger.Nullable_Integer; Cluster_Periodclient_Periodfailure_Periodcheck_Periodperiod : in Swagger.Nullable_Integer; Cluster_Periodnotification_Periodattempts : in Swagger.Nullable_Integer; Cluster_Periodnotification_Periodinterval : in Swagger.Nullable_Integer; Id_Periodcache_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodconfirmation_Periodwindow_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodconnection_Periodttl : in Swagger.Nullable_Integer; Cluster_Periodduplicate_Perioddetection : in Swagger.Nullable_Boolean; Cluster_Periodinitial_Periodconnect_Periodattempts : in Swagger.Nullable_Integer; Cluster_Periodmax_Periodretry_Periodinterval : in Swagger.Nullable_Integer; Cluster_Periodmin_Periodlarge_Periodmessage_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodproducer_Periodwindow_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodreconnect_Periodattempts : in Swagger.Nullable_Integer; Cluster_Periodretry_Periodinterval : in Swagger.Nullable_Integer; Cluster_Periodretry_Periodinterval_Periodmultiplier : in Swagger.Number; Result : out .Models.ComAdobeCqScreensMqActivemqImplArtemisJMSProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Offlinecontent_Impl_Bulk_Offline_Update_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodofflinecontent_Periodimpl_Period_Bulk_Offline_Update_Service_Impl_Periodproject_Path : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodofflinecontent_Periodimpl_Period_Bulk_Offline_Update_Service_Impl_Periodschedule_Frequency : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Offlinecontent_Impl_Offline_Content_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disable_Smart_Sync : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Screens_Segmentation_Impl_Segmentation_Feature_Flag (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Data_Triggered_Content : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Security_Hc_Bundles_Impl_Html_Library_Manager_Config_Health_Ch (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Security_Hc_Bundles_Impl_Wcm_Filter_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Security_Hc_Dispatcher_Impl_Dispatcher_Access_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Dispatcher_Periodaddress : in Swagger.Nullable_UString; Dispatcher_Periodfilter_Periodallowed : in Swagger.UString_Vectors.Vector; Dispatcher_Periodfilter_Periodblocked : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Security_Hc_Packages_Impl_Example_Content_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Security_Hc_Webserver_Impl_Clickjacking_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Webserver_Periodaddress : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Accountverification_Impl_Account_Management_Config_Im (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable : in Swagger.Nullable_Boolean; Ttl1 : in Swagger.Nullable_Integer; Ttl2 : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialAccountverificationImplAccountManagementConfigImInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Stream_Co (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Event_Listener_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Moderation_Event_Exten (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Accepted : in Swagger.Nullable_Boolean; Ranked : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Rating_Event_Activity_S (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ranking : in Swagger.Nullable_Integer; Enable : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Resource_Activity_Stre (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Stream_Path : in Swagger.Nullable_UString; Stream_Name : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Calendar_Client_Endpoints_Impl_Calendar_Operations_I (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Retry : in Swagger.Nullable_Integer; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Calendar_Client_Operationextensions_Event_Attachmen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.Nullable_UString; Extension_Periodorder : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Calendar_Servlets_Time_Zone_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Timezones_Periodexpirytime : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCalendarServletsTimeZoneServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Delete_Event (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Operation_Se (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Translation_Operati (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Comments_Listing_Impl_Search_Comment_Social_C (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Num_User_Limit : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Comments_Scheduler_Impl_Search_Scheduled_Pos (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Scheduled_Posts_Search : in Swagger.Nullable_Boolean; Number_Of_Minutes : in Swagger.Nullable_Integer; Max_Search_Limit : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Cors_C_O_R_S_Authentication_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cors_Periodenabling : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Android_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Builder_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Context_Periodpath : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Custom_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Quoted_Text_Patterns_Imp (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pattern_Periodtime : in Swagger.Nullable_UString; Pattern_Periodnewline : in Swagger.Nullable_UString; Pattern_Periodday_Of_Month : in Swagger.Nullable_UString; Pattern_Periodmonth : in Swagger.Nullable_UString; Pattern_Periodyear : in Swagger.Nullable_UString; Pattern_Perioddate : in Swagger.Nullable_UString; Pattern_Perioddate_Time : in Swagger.Nullable_UString; Pattern_Periodemail : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Configuration_Imp (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Email_Periodname : in Swagger.Nullable_UString; Email_Periodcreate_Post_From_Reply : in Swagger.Nullable_Boolean; Email_Periodadd_Comment_Id_To : in Swagger.Nullable_UString; Email_Periodsubject_Maximum_Length : in Swagger.Nullable_Integer; Email_Periodreply_To_Address : in Swagger.Nullable_UString; Email_Periodreply_To_Delimiter : in Swagger.Nullable_UString; Email_Periodtracker_Id_Prefix_In_Subject : in Swagger.Nullable_UString; Email_Periodtracker_Id_Prefix_In_Body : in Swagger.Nullable_UString; Email_Periodas_H_T_M_L : in Swagger.Nullable_Boolean; Email_Perioddefault_User_Name : in Swagger.Nullable_UString; Email_Periodtemplates_Periodroot_Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Importer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Connect_Protocol : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Gmail_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_I_O_S_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Macmail_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Out_Look_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Unknown_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Yahoo_Email_Client_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Maintainance_Impl_Delete_Temp_U_G_C_Image_Upload (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Number_Of_Days : in Swagger.Nullable_Integer; Age_Of_File : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Ugclimiter_Impl_U_G_C_Limiter_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Verbs : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Commons_Ugclimitsconfig_Impl_Community_User_U_G_C_Limit (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable : in Swagger.Nullable_Boolean; U_G_C_Limit : in Swagger.Nullable_Integer; Ugc_Limit_Duration : in Swagger.Nullable_Integer; Domains : in Swagger.UString_Vectors.Vector; To_List : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Facebook_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodcloud_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Periodcreate_Periodtags_Periodenabled : in Swagger.Nullable_Boolean; Provider_Periodconfig_Perioduser_Periodfolder : in Swagger.Nullable_UString; Provider_Periodconfig_Periodfacebook_Periodfetch_Periodfields : in Swagger.Nullable_Boolean; Provider_Periodconfig_Periodfacebook_Periodfields : in Swagger.UString_Vectors.Vector; Provider_Periodconfig_Periodrefresh_Perioduserdata_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialConnectOauthImplFacebookProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_Authentication_Handle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_User_Profile_Mapper (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Facebook : in Swagger.UString_Vectors.Vector; Twitter : in Swagger.UString_Vectors.Vector; Provider_Periodconfig_Perioduser_Periodfolder : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Twitter_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodcloud_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Perioduser_Periodfolder : in Swagger.Nullable_UString; Provider_Periodconfig_Periodtwitter_Periodenable_Periodparams : in Swagger.Nullable_Boolean; Provider_Periodconfig_Periodtwitter_Periodparams : in Swagger.UString_Vectors.Vector; Provider_Periodconfig_Periodrefresh_Perioduserdata_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialConnectOauthImplTwitterProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Content_Fragments_Services_Impl_Communities_Fragmen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodcontent_Periodfragments_Periodservices_Periodenabled : in Swagger.Nullable_Boolean; Cq_Periodsocial_Periodcontent_Periodfragments_Periodservices_Periodwait_Time_Seconds : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Datastore_As_Impl_A_S_Resource_Provider_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Version_Periodid : in Swagger.Nullable_UString; Cache_Periodon : in Swagger.Nullable_Boolean; Concurrency_Periodlevel : in Swagger.Nullable_Integer; Cache_Periodstart_Periodsize : in Swagger.Nullable_Integer; Cache_Periodttl : in Swagger.Nullable_Integer; Cache_Periodsize : in Swagger.Nullable_Integer; Time_Periodlimit : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Datastore_Op_Impl_Social_M_S_Resource_Provider_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodzk_Periodtimeout : in Swagger.Nullable_UString; Solr_Periodcommit : in Swagger.Nullable_UString; Cache_Periodon : in Swagger.Nullable_Boolean; Concurrency_Periodlevel : in Swagger.Nullable_Integer; Cache_Periodstart_Periodsize : in Swagger.Nullable_Integer; Cache_Periodttl : in Swagger.Nullable_Integer; Cache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Datastore_Rdb_Impl_Social_R_D_B_Resource_Provider_Factor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodzk_Periodtimeout : in Swagger.Nullable_UString; Solr_Periodcommit : in Swagger.Nullable_UString; Cache_Periodon : in Swagger.Nullable_Boolean; Concurrency_Periodlevel : in Swagger.Nullable_Integer; Cache_Periodstart_Periodsize : in Swagger.Nullable_Integer; Cache_Periodttl : in Swagger.Nullable_Integer; Cache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Learning_Path_Adaptor_F (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Member_Check : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Resource_Adaptor_Facto (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Member_Check : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Enablement_Learningpath_Endpoints_Impl_Enablement_L (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Enablement_Resource_Endpoints_Impl_Enablement_Resou (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Enablement_Services_Impl_Author_Marker_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Filelibrary_Download_Ge (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Impl_File_Library_Opera (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Forum_Client_Endpoints_Impl_Forum_Operations_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Forum_Dispatcher_Impl_Flush_Operations (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extension_Periodorder : in Swagger.Nullable_Integer; Flush_Periodforumontopic : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialForumDispatcherImplFlushOperationsInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Group_Client_Impl_Community_Group_Collection_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Group_Periodlisting_Periodpagination_Periodenable : in Swagger.Nullable_Boolean; Group_Periodlisting_Periodlazyloading_Periodenable : in Swagger.Nullable_Boolean; Page_Periodsize : in Swagger.Nullable_Integer; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Group_Impl_Group_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Wait_Time : in Swagger.Nullable_Integer; Min_Wait_Between_Retries : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialGroupImplGroupServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Handlebars_Guava_Template_Cache_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parameter_Periodguava_Periodcache_Periodenabled : in Swagger.Nullable_Boolean; Parameter_Periodguava_Periodcache_Periodparams : in Swagger.Nullable_UString; Parameter_Periodguava_Periodcache_Periodreload : in Swagger.Nullable_Boolean; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Ideation_Client_Endpoints_Impl_Ideation_Operations_S (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Journal_Client_Endpoints_Impl_Journal_Operations_Ser (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_Group_Profile (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_User_Profile_O (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Members_Impl_Community_Member_Group_Profile_Component_F (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Everyone_Limit : in Swagger.Nullable_Integer; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Messaging_Client_Endpoints_Impl_Messaging_Operation (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Message_Periodproperties : in Swagger.UString_Vectors.Vector; Message_Box_Size_Limit : in Swagger.Nullable_Integer; Message_Count_Limit : in Swagger.Nullable_Integer; Notify_Failure : in Swagger.Nullable_Boolean; Failure_Message_From : in Swagger.Nullable_UString; Failure_Template_Path : in Swagger.Nullable_UString; Max_Retries : in Swagger.Nullable_Integer; Min_Wait_Between_Retries : in Swagger.Nullable_Integer; Count_Update_Pool_Size : in Swagger.Nullable_Integer; Inbox_Periodpath : in Swagger.Nullable_UString; Sentitems_Periodpath : in Swagger.Nullable_UString; Support_Attachments : in Swagger.Nullable_Boolean; Support_Group_Messaging : in Swagger.Nullable_Boolean; Max_Total_Recipients : in Swagger.Nullable_Integer; Batch_Size : in Swagger.Nullable_Integer; Max_Total_Attachment_Size : in Swagger.Nullable_Integer; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Allowed_Attachment_Types : in Swagger.UString_Vectors.Vector; Service_Selector : in Swagger.Nullable_UString; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Filter_Group_Social_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Type_Periodfilters : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Moderation_Dashboard_Social (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_User_Details_Social_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Internal_Impl_Filter_Group_Soci (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Type_Periodfilters : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Mentions_Router (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialNotificationsImplMentionsRouterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Notification_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodunread_Periodnotification_Periodcount : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialNotificationsImplNotificationManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Notifications_Router (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialNotificationsImplNotificationsRouterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Qna_Client_Endpoints_Impl_Qna_Forum_Operations_Servic (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_I (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodreporting_Periodanalytics_Periodpolling_Periodimporter_Periodinterval : in Swagger.Nullable_Integer; Cq_Periodsocial_Periodreporting_Periodanalytics_Periodpolling_Periodimporter_Periodpage_Size : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_M (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Report_Periodfetch_Perioddelay : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Site_Trend_Report_S (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodconsole_Periodanalytics_Periodsites_Periodmapping : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Review_Client_Endpoints_Impl_Review_Operations_Servi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Scf_Core_Operations_Impl_Social_Operations_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Scf_Endpoints_Impl_Default_Social_Get_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Scoring_Impl_Scoring_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialScoringImplScoringEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Serviceusers_Internal_Impl_Service_User_Wrapper_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Fallback : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Site_Endpoints_Impl_Site_Operation_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Site_Path_Filters : in Swagger.UString_Vectors.Vector; Site_Package_Group : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Site_Impl_Analytics_Component_Configuration_Service_Im (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodconsole_Periodanalytics_Periodcomponents : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Site_Impl_Site_Configurator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Components_Using_Tags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSiteImplSiteConfiguratorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Srp_Impl_Social_Solr_Connector (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Srp_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSrpImplSocialSolrConnectorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Sync_Impl_Diff_Changes_Observer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Agent_Name : in Swagger.Nullable_UString; Diff_Path : in Swagger.Nullable_UString; Property_Names : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSyncImplDiffChangesObserverInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Sync_Impl_Group_Sync_Listener_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Nodetypes : in Swagger.UString_Vectors.Vector; Ignorableprops : in Swagger.UString_Vectors.Vector; Ignorablenodes : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Distfolders : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSyncImplGroupSyncListenerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Sync_Impl_Publisher_Sync_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Active_Run_Modes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSyncImplPublisherSyncServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Sync_Impl_User_Sync_Listener_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Nodetypes : in Swagger.UString_Vectors.Vector; Ignorableprops : in Swagger.UString_Vectors.Vector; Ignorablenodes : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Distfolders : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSyncImplUserSyncListenerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Translation_Impl_Translation_Service_Config_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Translate_Periodlanguage : in Swagger.Nullable_UString; Translate_Perioddisplay : in Swagger.Nullable_UString; Translate_Periodattribution : in Swagger.Nullable_Boolean; Translate_Periodcaching : in Swagger.Nullable_UString; Translate_Periodsmart_Periodrendering : in Swagger.Nullable_UString; Translate_Periodcaching_Periodduration : in Swagger.Nullable_UString; Translate_Periodsession_Periodsave_Periodinterval : in Swagger.Nullable_UString; Translate_Periodsession_Periodsave_Periodbatch_Limit : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Translation_Impl_U_G_C_Language_Detector (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Translate_Periodlistener_Periodtype : in Swagger.UString_Vectors.Vector; Translate_Periodproperty_Periodlist : in Swagger.UString_Vectors.Vector; Pool_Size : in Swagger.Nullable_Integer; Max_Pool_Size : in Swagger.Nullable_Integer; Queue_Size : in Swagger.Nullable_Integer; Keep_Alive_Time : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialTranslationImplUGCLanguageDetectorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Ugcbase_Dispatcher_Impl_Flush_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Thread_Pool_Size : in Swagger.Nullable_Integer; Delay_Time : in Swagger.Nullable_Integer; Worker_Sleep_Time : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Aysnc_Reverse_Replicator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pool_Size : in Swagger.Nullable_Integer; Max_Pool_Size : in Swagger.Nullable_Integer; Queue_Size : in Swagger.Nullable_Integer; Keep_Alive_Time : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Publisher_Configuration_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Primary_Publisher : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Social_Utils_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Legacy_Cloud_U_G_C_Path_Mapping : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialUgcbaseImplSocialUtilsImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Auto_Moderation_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Automoderation_Periodsequence : in Swagger.UString_Vectors.Vector; Automoderation_Periodonfailurestop : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Sentiment_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Watchwords_Periodpositive : in Swagger.UString_Vectors.Vector; Watchwords_Periodnegative : in Swagger.UString_Vectors.Vector; Watchwords_Periodpath : in Swagger.Nullable_UString; Sentiment_Periodpath : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialUgcbaseModerationImplSentimentProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Default_Attachment_Type_Blackli (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Baseline_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Safer_Sling_Post_Validator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Binary_Periodparameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Modifier_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Typehint_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resourcetype_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_User_Endpoints_Impl_Users_Group_From_Publish_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Social_User_Impl_Transport_Http_To_Publisher (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable : in Swagger.Nullable_Boolean; Agent_Periodconfiguration : in Swagger.UString_Vectors.Vector; Context_Periodpath : in Swagger.Nullable_UString; Disabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Enabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialUserImplTransportHttpToPublisherInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Ui_Wcm_Commons_Internal_Servlets_Rte_R_T_E_Filter_Servlet_Fact (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Content_Cleanup (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Delete_Periodpath_Periodregexps : in Swagger.UString_Vectors.Vector; Delete_Periodsql2_Periodquery : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Install_Folder_Cleanup (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Delete_Periodname_Periodregexps : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Delete_Config_Provider_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Threshold : in Swagger.Nullable_Integer; Job_Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Job_Clean_Up_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Job_Periodpurge_Periodthreshold : in Swagger.Nullable_Integer; Job_Periodpurge_Periodmax_Periodjobs : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Move_Config_Provider_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Threshold : in Swagger.Nullable_Integer; Job_Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Page_Move_Config_Provider_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Threshold : in Swagger.Nullable_Integer; Job_Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Wcm_Launches_Impl_Launches_Event_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Launches_Periodeventhandler_Periodthreadpool_Periodmaxsize : in Swagger.Nullable_Integer; Launches_Periodeventhandler_Periodthreadpool_Periodpriority : in Swagger.Nullable_UString; Launches_Periodeventhandler_Periodupdatelastmodification : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmLaunchesImplLaunchesEventHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Wcm_Mobile_Qrcode_Servlet_Q_R_Code_Image_Generator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodqrcode_Periodservlet_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Wcm_Style_Internal_Component_Style_Info_Cache_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Size : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Cq_Wcm_Translation_Impl_Translation_Platform_Configuration_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sync_Translation_State_Periodscheduling_Format : in Swagger.Nullable_UString; Scheduling_Repeat_Translation_Periodscheduling_Format : in Swagger.Nullable_UString; Sync_Translation_State_Periodlock_Timeout_In_Minutes : in Swagger.Nullable_UString; Export_Periodformat : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Fd_Fp_Config_Forms_Portal_Draftsand_Submission_Config_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Portal_Periodoutboxes : in Swagger.UString_Vectors.Vector; Draft_Perioddata_Periodservice : in Swagger.Nullable_UString; Draft_Periodmetadata_Periodservice : in Swagger.Nullable_UString; Submit_Perioddata_Periodservice : in Swagger.Nullable_UString; Submit_Periodmetadata_Periodservice : in Swagger.Nullable_UString; Pending_Sign_Perioddata_Periodservice : in Swagger.Nullable_UString; Pending_Sign_Periodmetadata_Periodservice : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Fd_Fp_Config_Forms_Portal_Scheduler_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Formportal_Periodinterval : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFdFpConfigFormsPortalSchedulerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Forms_Common_Service_Impl_Default_Data_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Alloweddata_File_Locations : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeFormsCommonServiceImplDefaultDataProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Forms_Common_Service_Impl_Forms_Common_Configuration_Service_Imp (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Temp_Storage_Config : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Forms_Common_Servlet_Temp_Clean_Up_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Duration for _Temporary _Storage : in Swagger.Nullable_UString; Duration for _Anonymous _Storage : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFormsCommonServletTempCleanUpTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Acp_Platform_Platform_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Periodlimit : in Swagger.Nullable_Integer; File_Periodtype_Periodextension_Periodmap : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteAcpPlatformPlatformServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Activitystreams_Impl_Activity_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Aggregate_Periodrelationships : in Swagger.UString_Vectors.Vector; Aggregate_Perioddescend_Periodvirtual : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteActivitystreamsImplActivityManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Analyzer_Base_System_Status_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAnalyzerBaseSystemStatusServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Analyzer_Scripts_Compile_All_Scripts_Compiler_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Apicontroller_Filter_Resolver_Hook_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodcdn_Periodcdn_Rewriter : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcloud_Config_Periodcomponents : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcloud_Config_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcloud_Config_Periodui : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodeditor : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodprojects_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodprojects_Periodwcm_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodui_Periodcommons : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodwcm_Periodstyle : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Activitymap_Integration : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Contexthub_Commons : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Dtm : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Healthcheck : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Multisite_Targeting : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Pre_Upgrade_Cleanup : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Product_Info_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Rest_Sites : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Security_Hc : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddam_Periodcq_Dam_Svg_Handler : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddam_Periodcq_Scene7_Imaging : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddtm_Reactor_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddtm_Reactor_Periodui : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodexp_Jspel_Resolver : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodinbox_Periodcq_Inbox : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodjson_Schema_Parser : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmedia_Periodcq_Media_Publishing_Dps_Fp_Core : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmobile_Periodcq_Mobile_Caas : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmobile_Periodcq_Mobile_Index_Builder : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmobile_Periodcq_Mobile_Phonegap_Build : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmyspell : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsample_Periodwe_Periodretail_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodcom_Periodadobe_Periodcq_Periodscreens_Perioddcc : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodcom_Periodadobe_Periodcq_Periodscreens_Periodmq_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_As_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Badging_Basic_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Badging_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Calendar_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Content_Fragments_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Enablement_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Graph_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Ideation_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Jcr_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Members_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Ms_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Notifications_Channels_Web : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Notifications_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Rdb_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Scf_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Scoring_Basic_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Scoring_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Serviceusers_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Srp_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Ugcbase_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Perioddam_Periodcq_Dam_Cfm_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodforms_Periodfoundation_Forms_Foundation_Base : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodapicontroller : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodasset_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodauth_Periodsso : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodbundles_Periodhc_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcompat_Router : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodconf : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodconf_Periodui_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcors : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrx_Explorer : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrxde_Lite : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodconfig : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodextension : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodfile : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodjcr : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcsrf : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Perioddistribution_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Perioddropwizard_Periodmetrics : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodfrags_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodgibson : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodinfocollector : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodinstaller_Periodfactory_Periodpackages : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjobs_Periodasync : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodmaintenance_Periodoak : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodmonitoring_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodqueries : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodreplication_Periodhc_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodrepository_Periodchecker : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodrepository_Periodhc_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodrest_Periodassets : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodsecurity_Periodui : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodstartup : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodtagsoup : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodtaskmanagement_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodtaskmanagement_Periodworkflow : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodui_Periodclientlibs_Periodcompiler_Periodless : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodui_Periodclientlibs_Periodprocessor_Periodgcc : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodwebconsole_Periodplugins : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodworkflow_Periodconsole : in Swagger.Nullable_UString; Com_Periodadobe_Periodxmp_Periodworker_Periodfiles_Periodnative_Periodfragment_Periodlinux : in Swagger.Nullable_UString; Com_Periodadobe_Periodxmp_Periodworker_Periodfiles_Periodnative_Periodfragment_Periodmacosx : in Swagger.Nullable_UString; Com_Periodadobe_Periodxmp_Periodworker_Periodfiles_Periodnative_Periodfragment_Periodwin : in Swagger.Nullable_UString; Com_Periodday_Periodcommons_Periodosgi_Periodwrapper_Periodsimple_Jndi : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Authhandler : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Compat_Configupdate : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Licensebranding : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Notifcation_Impl : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Replication_Audit : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Search_Ext : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_Annotation_Print : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_Asset_Usage : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_S7dam : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_Similaritysearch : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Perioddam_Webdav_Support : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodpre_Upgrade_Tasks : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodreplication_Periodextensions : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodwcm_Periodcq_Msm_Core : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodwcm_Periodcq_Wcm_Translation : in Swagger.Nullable_UString; Day_Commons_Jrawio : in Swagger.Nullable_UString; Org_Periodapache_Periodaries_Periodjmx_Periodwhiteboard : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodsslfilter : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodorg_Periodapache_Periodfelix_Periodthreaddump : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodds : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodevent : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodmemoryusage : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodpackageadmin : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Auth_Ldap : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Segment_Tar : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Solr_Osgi : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodbundleresource_Periodimpl : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodfsclassloader : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodwebconsole : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddatasource : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddiscovery_Periodbase : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddiscovery_Periodoak : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddiscovery_Periodsupport : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddistribution_Periodapi : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddistribution_Periodcore : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodextensions_Periodwebconsolesecurityprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhc_Periodwebconsole : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodinstaller_Periodconsole : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodinstaller_Periodprovider_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodinstaller_Periodprovider_Periodjcr : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodjcr_Perioddavex : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodjcr_Periodresourcesecurity : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodjmx_Periodprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodlaunchpad_Periodinstaller : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodmodels_Periodimpl : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodrepoinit_Periodparser : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodresource_Periodinventory : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodresourceresolver : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodjavascript : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodjst : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodsightly_Periodjs_Periodprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodsightly_Periodmodels_Periodprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodsecurity : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodservlets_Periodcompat : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodservlets_Periodget : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodstartupfilter_Perioddisabler : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodtracer : in Swagger.Nullable_UString; We_Periodretail_Periodclient_Periodapp_Periodcore : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteApicontrollerFilterResolverHookFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Cert_Impl_Client_Cert_Auth_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteAuthCertImplClientCertAuthHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Ims (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Configid : in Swagger.Nullable_UString; Scope : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Ims_Impl_External_User_Id_Mapping_Provider_Extension (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Access_Token_Request_Customizer_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auth_Periodims_Periodclient_Periodsecret : in Swagger.Nullable_UString; Customizer_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Instance_Credentials_Validator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodauthorization_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodprofile_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodextended_Perioddetails_Periodurls : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodims_Periodvalidate_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodsession_Periodproperty : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodservice_Periodtoken_Periodclient_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodservice_Periodtoken_Periodclient_Periodsecret : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodservice_Periodtoken : in Swagger.Nullable_UString; Ims_Periodorg_Periodref : in Swagger.Nullable_UString; Ims_Periodgroup_Periodmapping : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodims_Periodonly_Periodlicense_Periodgroup : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAuthImsImplIMSProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Ims_Impl_Ims_Config_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodconfigmanager_Periodims_Periodconfigid : in Swagger.Nullable_UString; Ims_Periodowning_Entity : in Swagger.Nullable_UString; Aem_Periodinstance_Id : in Swagger.Nullable_UString; Ims_Periodservice_Code : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplImsConfigProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Accesstoken_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodtitle : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Perioddefault_Periodclaims : in Swagger.UString_Vectors.Vector; Auth_Periodtoken_Periodprovider_Periodendpoint : in Swagger.Nullable_UString; Auth_Periodaccess_Periodtoken_Periodrequest : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodkeypair_Periodalias : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Auth_Periodtoken_Periodprovider_Periodso_Periodtimeout : in Swagger.Nullable_Integer; Auth_Periodtoken_Periodprovider_Periodclient_Periodid : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodscope : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodreuse_Periodaccess_Periodtoken : in Swagger.Nullable_Boolean; Auth_Periodtoken_Periodprovider_Periodrelaxed_Periodssl : in Swagger.Nullable_Boolean; Token_Periodrequest_Periodcustomizer_Periodtype : in Swagger.Nullable_UString; Auth_Periodtoken_Periodvalidator_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthAccesstokenProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Bearer_Authentication_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Oauth_Periodclient_Ids_Periodallowed : in Swagger.UString_Vectors.Vector; Auth_Periodbearer_Periodsync_Periodims : in Swagger.Nullable_Boolean; Auth_Periodtoken_Request_Parameter : in Swagger.Nullable_UString; Oauth_Periodbearer_Periodconfigid : in Swagger.Nullable_UString; Oauth_Periodjwt_Periodsupport : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Default_Token_Validator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auth_Periodtoken_Periodvalidator_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Facebook_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplFacebookProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Github_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgithub_Periodauthorization_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgithub_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgithub_Periodprofile_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplGithubProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Granite_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodauthorization_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodprofile_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodextended_Perioddetails_Periodurls : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplGraniteProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodcookie_Periodlogin_Periodtimeout : in Swagger.Nullable_UString; Oauth_Periodcookie_Periodmax_Periodage : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager_Internal (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodcookie_Periodlogin_Periodtimeout : in Swagger.Nullable_UString; Oauth_Periodcookie_Periodmax_Periodage : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_O_Auth_Authentication_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Twitter_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplTwitterProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Oauth_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodconfig_Periodid : in Swagger.Nullable_UString; Oauth_Periodclient_Periodid : in Swagger.Nullable_UString; Oauth_Periodclient_Periodsecret : in Swagger.Nullable_UString; Oauth_Periodscope : in Swagger.UString_Vectors.Vector; Oauth_Periodconfig_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodcreate_Periodusers : in Swagger.Nullable_Boolean; Oauth_Perioduserid_Periodproperty : in Swagger.Nullable_UString; Force_Periodstrict_Periodusername_Periodmatching : in Swagger.Nullable_Boolean; Oauth_Periodencode_Perioduserids : in Swagger.Nullable_Boolean; Oauth_Periodhash_Perioduserids : in Swagger.Nullable_Boolean; Oauth_Periodcall_Back_Url : in Swagger.Nullable_UString; Oauth_Periodaccess_Periodtoken_Periodpersist : in Swagger.Nullable_Boolean; Oauth_Periodaccess_Periodtoken_Periodpersist_Periodcookie : in Swagger.Nullable_Boolean; Oauth_Periodcsrf_Periodstate_Periodprotection : in Swagger.Nullable_Boolean; Oauth_Periodredirect_Periodrequest_Periodparams : in Swagger.Nullable_Boolean; Oauth_Periodconfig_Periodsiblings_Periodallow : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAuthOauthProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Requirement_Impl_Default_Requirement_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Supported_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Saml_Saml_Authentication_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Idp_Url : in Swagger.Nullable_UString; Idp_Cert_Alias : in Swagger.Nullable_UString; Idp_Http_Redirect : in Swagger.Nullable_Boolean; Service_Provider_Entity_Id : in Swagger.Nullable_UString; Assertion_Consumer_Service_U_R_L : in Swagger.Nullable_UString; Sp_Private_Key_Alias : in Swagger.Nullable_UString; Key_Store_Password : in Swagger.Nullable_UString; Default_Redirect_Url : in Swagger.Nullable_UString; User_I_D_Attribute : in Swagger.Nullable_UString; Use_Encryption : in Swagger.Nullable_Boolean; Create_User : in Swagger.Nullable_Boolean; User_Intermediate_Path : in Swagger.Nullable_UString; Add_Group_Memberships : in Swagger.Nullable_Boolean; Group_Membership_Attribute : in Swagger.Nullable_UString; Default_Groups : in Swagger.UString_Vectors.Vector; Name_Id_Format : in Swagger.Nullable_UString; Synchronize_Attributes : in Swagger.UString_Vectors.Vector; Handle_Logout : in Swagger.Nullable_Boolean; Logout_Url : in Swagger.Nullable_UString; Clock_Tolerance : in Swagger.Nullable_Integer; Digest_Method : in Swagger.Nullable_UString; Signature_Method : in Swagger.Nullable_UString; Identity_Sync_Type : in Swagger.Nullable_UString; Idp_Identifier : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthSamlSamlAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Auth_Sso_Impl_Sso_Authentication_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Jaas_Periodranking : in Swagger.Nullable_Integer; Headers : in Swagger.UString_Vectors.Vector; Cookies : in Swagger.UString_Vectors.Vector; Parameters : in Swagger.UString_Vectors.Vector; Usermap : in Swagger.UString_Vectors.Vector; Format : in Swagger.Nullable_UString; Trusted_Credentials_Attribute : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Code_Cache_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Minimum_Periodcode_Periodcache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Crxde_Support_Bundle_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Dav_Ex_Bundle_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Inactive_Bundles_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Ignored_Periodbundles : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Jobs_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Max_Periodqueued_Periodjobs : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteBundlesHcImplJobsHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Get_Servlet_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Java_Script_Handler_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Jsp_Script_Handler_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Referrer_Filter_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Web_Dav_Bundle_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Comments_Internal_Comment_Replication_Content_Filter_Fac (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Replicate_Periodcomment_Periodresource_Types : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Compatrouter_Impl_Compat_Switching_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Compatgroups : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Compatrouter_Impl_Routing_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Id : in Swagger.Nullable_UString; Compat_Path : in Swagger.Nullable_UString; New_Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteCompatrouterImplRoutingConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Compatrouter_Impl_Switch_Mapping_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Group : in Swagger.Nullable_UString; Ids : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteCompatrouterImplSwitchMappingConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Conf_Impl_Runtime_Aware_Configuration_Resource_Resolving (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Fallback_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Contexthub_Impl_Context_Hub_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodcontexthub_Periodsilent_Mode : in Swagger.Nullable_Boolean; Com_Periodadobe_Periodgranite_Periodcontexthub_Periodshow_Ui : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteContexthubImplContextHubImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Cors_Impl_C_O_R_S_Policy_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Alloworigin : in Swagger.UString_Vectors.Vector; Alloworiginregexp : in Swagger.UString_Vectors.Vector; Allowedpaths : in Swagger.UString_Vectors.Vector; Exposedheaders : in Swagger.UString_Vectors.Vector; Maxage : in Swagger.Nullable_Integer; Supportedheaders : in Swagger.UString_Vectors.Vector; Supportedmethods : in Swagger.UString_Vectors.Vector; Supportscredentials : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteCorsImplCORSPolicyImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filter_Periodmethods : in Swagger.UString_Vectors.Vector; Filter_Periodenable_Periodsafe_Perioduser_Periodagents : in Swagger.Nullable_Boolean; Filter_Periodsafe_Perioduser_Periodagents : in Swagger.UString_Vectors.Vector; Filter_Periodexcluded_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteCsrfImplCSRFFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Csrf_Periodtoken_Periodexpires_Periodin : in Swagger.Nullable_Integer; Sling_Periodauth_Periodrequirements : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteCsrfImplCSRFServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Crypto_Distribution_Transport_Se (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Encrypted_Password : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Changes_Observer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Agent_Name : in Swagger.Nullable_UString; Diff_Path : in Swagger.Nullable_UString; Observed_Path : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Property_Names : in Swagger.Nullable_UString; Distribution_Delay : in Swagger.Nullable_Integer; Service_User_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Diff_Path : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Service_User_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Distribution_To_Replication_Even (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Importer_Periodname : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Replication_Adapters_Replicat (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Name : in Swagger.Nullable_UString; Forward_Periodrequests : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Replication_Distribution_Trans (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forward_Periodrequests : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteDistributionCoreImplReplicationDistributionTransInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Transport_Access_Token_Distribu (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; User_Id : in Swagger.Nullable_UString; Access_Token_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Frags_Impl_Check_Http_Header_Flag (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Feature_Periodname : in Swagger.Nullable_UString; Feature_Perioddescription : in Swagger.Nullable_UString; Http_Periodheader_Periodname : in Swagger.Nullable_UString; Http_Periodheader_Periodvaluepattern : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteFragsImplCheckHttpHeaderFlagInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Frags_Impl_Random_Feature (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Feature_Periodname : in Swagger.Nullable_UString; Feature_Perioddescription : in Swagger.Nullable_UString; Active_Periodpercentage : in Swagger.Nullable_UString; Cookie_Periodname : in Swagger.Nullable_UString; Cookie_Periodmax_Age : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteFragsImplRandomFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Httpcache_File_File_Cache_Store (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodhttpcache_Periodfile_Perioddocument_Root : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodhttpcache_Periodfile_Periodinclude_Host : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteHttpcacheFileFileCacheStoreInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Httpcache_Impl_Outer_Cache_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodhttpcache_Periodurl_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteHttpcacheImplOuterCacheFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_I18n_Impl_Bundle_Pseudo_Translations (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pseudo_Periodpatterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteI18nImplBundlePseudoTranslationsInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_I18n_Impl_Preferences_Locale_Resolver_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Security_Periodpreferences_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Infocollector_Info_Collector (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodinfocollector_Periodinclude_Thread_Dumps : in Swagger.Nullable_Boolean; Granite_Periodinfocollector_Periodinclude_Heap_Dump : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteInfocollectorInfoCollectorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Jetty_Ssl_Internal_Granite_Ssl_Connector_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodport : in Swagger.Nullable_Integer; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodkeystore_Perioduser : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodkeystore_Periodpassword : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodciphersuites_Periodexcluded : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodciphersuites_Periodincluded : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodclient_Periodcertificate : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_License_Impl_License_Check_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Check_Internval : in Swagger.Nullable_Integer; Exclude_Ids : in Swagger.UString_Vectors.Vector; Encrypt_Ping : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteLicenseImplLicenseCheckFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Logging_Impl_Log_Analyser_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Messages_Periodqueue_Periodsize : in Swagger.Nullable_Integer; Logger_Periodconfig : in Swagger.UString_Vectors.Vector; Messages_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteLoggingImplLogAnalyserImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Logging_Impl_Log_Error_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteLoggingImplLogErrorHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Data_Store_Garbage_Collection_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodmaintenance_Periodmandatory : in Swagger.Nullable_Boolean; Job_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Lucene_Binaries_Cleanup_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Revision_Cleanup_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Full_Periodgc_Perioddays : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Monitoring_Impl_Script_Config_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Script_Periodfilename : in Swagger.Nullable_UString; Script_Perioddisplay : in Swagger.Nullable_UString; Script_Periodpath : in Swagger.Nullable_UString; Script_Periodplatform : in Swagger.UString_Vectors.Vector; Interval : in Swagger.Nullable_Integer; Jmxdomain : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteMonitoringImplScriptConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Oauth_Server_Auth_Impl_O_Auth2_Server_Authentication_Han (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Jaas_Periodranking : in Swagger.Nullable_Integer; Oauth_Periodoffline_Periodvalidation : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Oauth_Server_Impl_Access_Token_Cleanup_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Client_Revocation_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodclient_Periodrevocation_Periodactive : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Revocation_Endpoint_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Oauth_Periodrevocation_Periodactive : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Endpoint_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodissuer : in Swagger.Nullable_UString; Oauth_Periodaccess_Periodtoken_Periodexpires_Periodin : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodservlet_Periodpattern : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Revocation_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodtoken_Periodrevocation_Periodactive : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Configurator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodtransporter : in Swagger.Nullable_UString; Offloading_Periodcleanup_Periodpayload : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplOffloadingConfiguratorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Cloner (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodjobcloner_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplOffloadingJobClonerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Offloader (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodoffloader_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplOffloadingJobOffloaderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Agent_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodagentmanager_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Default_Transpo (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodtransport_Periodagent_To_Worker_Periodprefix : in Swagger.Nullable_UString; Default_Periodtransport_Periodagent_To_Master_Periodprefix : in Swagger.Nullable_UString; Default_Periodtransport_Periodinput_Periodpackage : in Swagger.Nullable_UString; Default_Periodtransport_Periodoutput_Periodpackage : in Swagger.Nullable_UString; Default_Periodtransport_Periodreplication_Periodsynchronous : in Swagger.Nullable_Boolean; Default_Periodtransport_Periodcontentpackage : in Swagger.Nullable_Boolean; Offloading_Periodtransporter_Perioddefault_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Omnisearch_Impl_Core_Omni_Search_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Omnisearch_Periodsuggestion_Periodrequiretext_Periodmin : in Swagger.Nullable_Integer; Omnisearch_Periodsuggestion_Periodspellcheck_Periodrequire : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Optout_Impl_Opt_Out_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Optout_Periodcookies : in Swagger.UString_Vectors.Vector; Optout_Periodheaders : in Swagger.UString_Vectors.Vector; Optout_Periodwhitelist_Periodcookies : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteOptoutImplOptOutServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Async_Index_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Indexing_Periodcritical_Periodthreshold : in Swagger.Nullable_Integer; Indexing_Periodwarn_Periodthreshold : in Swagger.Nullable_Integer; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Large_Index_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_Periodindex_Periodcritical_Periodthreshold : in Swagger.Nullable_Integer; Large_Periodindex_Periodwarn_Periodthreshold : in Swagger.Nullable_Integer; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Queries_Status_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Query_Health_Check_Metrics (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Get_Period : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Query_Limits_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Replication_Hc_Impl_Replication_Queue_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Number_Periodof_Periodretries_Periodallowed : in Swagger.Nullable_Integer; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Replication_Hc_Impl_Replication_Transport_Users_Health_C (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Authorizable_Node_Name_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Content_Sling_Sling_Content_Health_C (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Exclude_Periodsearch_Periodpath : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Continuous_R_G_C_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Default_Access_User_Profile_Health_Che (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Default_Logins_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Account_Periodlogins : in Swagger.UString_Vectors.Vector; Console_Periodlogins : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Disk_Space_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Disk_Periodspace_Periodwarn_Periodthreshold : in Swagger.Nullable_Integer; Disk_Periodspace_Perioderror_Periodthreshold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Observation_Queue_Length_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Repository_Impl_Commit_Stats_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Interval_Seconds : in Swagger.Nullable_Integer; Commits_Per_Interval_Threshold : in Swagger.Nullable_Integer; Max_Location_Length : in Swagger.Nullable_Integer; Max_Details_Shown : in Swagger.Nullable_Integer; Min_Details_Percentage : in Swagger.Nullable_Integer; Thread_Matchers : in Swagger.UString_Vectors.Vector; Max_Greedy_Depth : in Swagger.Nullable_Integer; Greedy_Stack_Matchers : in Swagger.Nullable_UString; Stack_Filters : in Swagger.UString_Vectors.Vector; Stack_Matchers : in Swagger.UString_Vectors.Vector; Stack_Categorizers : in Swagger.UString_Vectors.Vector; Stack_Shorteners : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryImplCommitStatsConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Repository_Service_User_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Serviceusers_Periodsimple_Subject_Population : in Swagger.Nullable_Boolean; Serviceusers_Periodlist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryServiceUserConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Requests_Logging_Impl_Hc_Requests_Status_Health_Check_Im (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Resourcestatus_Impl_Composite_Status_Type (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Types : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteResourcestatusImplCompositeStatusTypeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Resourcestatus_Impl_Status_Resource_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroot : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteResourcestatusImplStatusResourceProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Rest_Assets_Impl_Asset_Content_Disposition_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mime_Periodallow_Empty : in Swagger.Nullable_Boolean; Mime_Periodallowed : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Rest_Impl_Api_Endpoint_Resource_Provider_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Rest_Impl_Servlet_Default_G_E_T_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodlimit : in Swagger.Nullable_Integer; Use_Periodabsolute_Perioduri : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteRestImplServletDefaultGETServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Security_User_Ui_Internal_Servlets_S_S_L_Configuration_S (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Security_User_User_Properties_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapter_Periodcondition : in Swagger.Nullable_UString; Granite_Perioduserproperties_Periodnodetypes : in Swagger.UString_Vectors.Vector; Granite_Perioduserproperties_Periodresourcetypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteSecurityUserUserPropertiesServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Socialgraph_Impl_Social_Graph_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Group2member_Periodrelationship_Periodoutgoing : in Swagger.Nullable_UString; Group2member_Periodexcluded_Periodoutgoing : in Swagger.UString_Vectors.Vector; Group2member_Periodrelationship_Periodincoming : in Swagger.Nullable_UString; Group2member_Periodexcluded_Periodincoming : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_System_Monitoring_Impl_System_Stats_M_Bean_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Jmx_Periodobjectname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Adapter_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapter_Periodcondition : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Archive_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Archiving_Periodenabled : in Swagger.Nullable_Boolean; Scheduler_Periodexpression : in Swagger.Nullable_UString; Archive_Periodsince_Perioddays_Periodcompleted : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Purge_Task_Purge_Maintenance_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Purge_Completed : in Swagger.Nullable_Boolean; Completed_Age : in Swagger.Nullable_Integer; Purge_Active : in Swagger.Nullable_Boolean; Active_Age : in Swagger.Nullable_Integer; Save_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Service_Task_Manager_Adapter_Factor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapter_Periodcondition : in Swagger.Nullable_UString; Taskmanager_Periodadmingroups : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Threaddump_Thread_Dump_Collector (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodrun_On : in Swagger.Nullable_UString; Granite_Periodthreaddump_Periodenabled : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Perioddumps_Per_File : in Swagger.Nullable_Integer; Granite_Periodthreaddump_Periodenable_Gzip_Compression : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Periodenable_Directories_Compression : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Periodenable_J_Stack : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Periodmax_Backup_Days : in Swagger.Nullable_Integer; Granite_Periodthreaddump_Periodbackup_Clean_Trigger : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteThreaddumpThreadDumpCollectorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Translation_Connector_Msft_Core_Impl_Microsoft_Transl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Translation_Factory : in Swagger.Nullable_UString; Default_Connector_Label : in Swagger.Nullable_UString; Default_Connector_Attribution : in Swagger.Nullable_UString; Default_Connector_Workspace_Id : in Swagger.Nullable_UString; Default_Connector_Subscription_Key : in Swagger.Nullable_UString; Language_Map_Location : in Swagger.Nullable_UString; Category_Map_Location : in Swagger.Nullable_UString; Retry_Attempts : in Swagger.Nullable_Integer; Timeout_Count : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Translation_Core_Impl_Translation_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Connector_Name : in Swagger.Nullable_UString; Default_Category : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteTranslationCoreImplTranslationManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Ui_Clientlibs_Impl_Html_Library_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodtiming : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug_Periodinit_Periodjs : in Swagger.Nullable_UString; Htmllibmanager_Periodminify : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug : in Swagger.Nullable_Boolean; Htmllibmanager_Periodgzip : in Swagger.Nullable_Boolean; Htmllibmanager_Periodmax_Data_Uri_Size : in Swagger.Nullable_Integer; Htmllibmanager_Periodmaxage : in Swagger.Nullable_Integer; Htmllibmanager_Periodforce_C_Q_Url_Info : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddefaultthemename : in Swagger.Nullable_UString; Htmllibmanager_Perioddefaultuserthemename : in Swagger.Nullable_UString; Htmllibmanager_Periodclientmanager : in Swagger.Nullable_UString; Htmllibmanager_Periodpath_Periodlist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodexcluded_Periodpath_Periodlist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodprocessor_Periodjs : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodprocessor_Periodcss : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodlongcache_Periodpatterns : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodlongcache_Periodformat : in Swagger.Nullable_UString; Htmllibmanager_Perioduse_File_System_Output_Cache : in Swagger.Nullable_Boolean; Htmllibmanager_Periodfile_System_Output_Cache_Location : in Swagger.Nullable_UString; Htmllibmanager_Perioddisable_Periodreplacement : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Console_Frags_Workflow_Withdraw_Feature (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Console_Publish_Workflow_Publish_Event_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodworkflow_Period_Workflow_Publish_Event_Service_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Core_Jcr_Workflow_Bucket_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Bucket_Size : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Core_Job_External_Process_Job_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodtimeout : in Swagger.Nullable_Integer; Max_Periodtimeout : in Swagger.Nullable_Integer; Default_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Core_Job_Job_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.UString_Vectors.Vector; Allow_Periodself_Periodprocess_Periodtermination : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowCoreJobJobHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Core_Offloading_Workflow_Offloading_Job_Consum (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Core_Payload_Map_Cache (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Get_System_Workflow_Models : in Swagger.UString_Vectors.Vector; Get_Package_Root_Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteWorkflowCorePayloadMapCacheInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Core_Payloadmap_Payload_Move_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Payload_Periodmove_Periodwhite_Periodlist : in Swagger.UString_Vectors.Vector; Payload_Periodmove_Periodhandle_Periodfrom_Periodworkflow_Periodprocess : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Core_Workflow_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodworkflow_Periodconfig_Periodworkflow_Periodpackages_Periodroot_Periodpath : in Swagger.UString_Vectors.Vector; Cq_Periodworkflow_Periodconfig_Periodworkflow_Periodprocess_Periodlegacy_Periodmode : in Swagger.Nullable_Boolean; Cq_Periodworkflow_Periodconfig_Periodallow_Periodlocking : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowCoreWorkflowConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Core_Workflow_Session_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodworkflowinbox_Periodsort_Periodproperty_Name : in Swagger.Nullable_UString; Granite_Periodworkflowinbox_Periodsort_Periodorder : in Swagger.Nullable_UString; Cq_Periodworkflow_Periodjob_Periodretry : in Swagger.Nullable_Integer; Cq_Periodworkflow_Periodsuperuser : in Swagger.UString_Vectors.Vector; Granite_Periodworkflow_Periodinbox_Query_Size : in Swagger.Nullable_Integer; Granite_Periodworkflow_Periodadmin_User_Group_Filter : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodenforce_Workitem_Assignee_Permissions : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodenforce_Workflow_Initiator_Permissions : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodinject_Tenant_Id_In_Job_Topics : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodmax_Purge_Save_Threshold : in Swagger.Nullable_Integer; Granite_Periodworkflow_Periodmax_Purge_Query_Count : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Granite_Workflow_Purge_Scheduler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduledpurge_Periodname : in Swagger.Nullable_UString; Scheduledpurge_Periodworkflow_Status : in Swagger.Nullable_UString; Scheduledpurge_Periodmodel_Ids : in Swagger.UString_Vectors.Vector; Scheduledpurge_Perioddaysold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowPurgeSchedulerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Octopus_Ncomm_Bootstrap (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Connections : in Swagger.Nullable_Integer; Max_Requests : in Swagger.Nullable_Integer; Request_Timeout : in Swagger.Nullable_Integer; Request_Retries : in Swagger.Nullable_Integer; Launch_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeOctopusNcommBootstrapInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Social_Integrations_Livefyre_User_Pingforpull_Impl_Ping_Pull_S (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Communities_Periodintegration_Periodlivefyre_Periodsling_Periodevent_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Adobe_Xmp_Worker_Files_Ncomm_X_M_P_Files_N_Comm (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Connections : in Swagger.Nullable_UString; Max_Requests : in Swagger.Nullable_UString; Request_Timeout : in Swagger.Nullable_UString; Log_Dir : in Swagger.Nullable_UString; Result : out .Models.ComAdobeXmpWorkerFilesNcommXMPFilesNCommInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Commons_Datasource_Jdbcpool_Jdbc_Pool_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jdbc_Perioddriver_Periodclass : in Swagger.Nullable_UString; Jdbc_Periodconnection_Perioduri : in Swagger.Nullable_UString; Jdbc_Periodusername : in Swagger.Nullable_UString; Jdbc_Periodpassword : in Swagger.Nullable_UString; Jdbc_Periodvalidation_Periodquery : in Swagger.Nullable_UString; Default_Periodreadonly : in Swagger.Nullable_Boolean; Default_Periodautocommit : in Swagger.Nullable_Boolean; Pool_Periodsize : in Swagger.Nullable_Integer; Pool_Periodmax_Periodwait_Periodmsec : in Swagger.Nullable_Integer; Datasource_Periodname : in Swagger.Nullable_UString; Datasource_Periodsvc_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Commons_Httpclient (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Proxy_Periodenabled : in Swagger.Nullable_Boolean; Proxy_Periodhost : in Swagger.Nullable_UString; Proxy_Perioduser : in Swagger.Nullable_UString; Proxy_Periodpassword : in Swagger.Nullable_UString; Proxy_Periodntlm_Periodhost : in Swagger.Nullable_UString; Proxy_Periodntlm_Perioddomain : in Swagger.Nullable_UString; Proxy_Periodexceptions : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCommonsHttpclientInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Impl_Store_Properties_Change_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodstore_Periodlistener_Periodadditional_Store_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqAnalyticsImplStorePropertiesChangeListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Exporter_Classifications_Exporte (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Allowed_Periodpaths : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodsaint_Periodexporter_Periodpagesize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Importer_Report_Importer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Report_Periodfetch_Periodattempts : in Swagger.Nullable_Integer; Report_Periodfetch_Perioddelay : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsSitecatalystImplImporterReportImporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Adapter_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodadapterfactory_Periodcontextstores : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Http_Client_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodsitecatalyst_Periodservice_Perioddatacenter_Periodurl : in Swagger.UString_Vectors.Vector; Devhostnamepatterns : in Swagger.UString_Vectors.Vector; Connection_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Account_Options_Updater (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodaccountoptionsupdater_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Delete_Author_Activity_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Perioddeleteauthoractivitylistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Push_Author_Campaign_Page_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodpushauthorcampaignpagelistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Segment_Importer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodsegmentimporter_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplSegmentImporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Service_Web_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Endpoint_Uri : in Swagger.Nullable_UString; Connection_Timeout : in Swagger.Nullable_Integer; Socket_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Servlets_Admin_Server_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Testandtarget_Periodendpoint_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Testandtarget_Http_Client_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodapi_Periodurl : in Swagger.Nullable_UString; Cq_Periodanalytics_Periodtestandtarget_Periodtimeout : in Swagger.Nullable_Integer; Cq_Periodanalytics_Periodtestandtarget_Periodsockettimeout : in Swagger.Nullable_Integer; Cq_Periodanalytics_Periodtestandtarget_Periodrecommendations_Periodurl_Periodreplace : in Swagger.Nullable_UString; Cq_Periodanalytics_Periodtestandtarget_Periodrecommendations_Periodurl_Periodreplacewith : in Swagger.Nullable_UString; Result : out .Models.ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Auth_Impl_Cug_Cug_Support_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cug_Periodexempted_Periodprincipals : in Swagger.UString_Vectors.Vector; Cug_Periodenabled : in Swagger.Nullable_Boolean; Cug_Periodprincipals_Periodregex : in Swagger.Nullable_UString; Cug_Periodprincipals_Periodreplacement : in Swagger.Nullable_UString; Result : out .Models.ComDayCqAuthImplCugCugSupportImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Auth_Impl_Login_Selector_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Auth_Periodloginselector_Periodmappings : in Swagger.UString_Vectors.Vector; Auth_Periodloginselector_Periodchangepw_Periodmappings : in Swagger.UString_Vectors.Vector; Auth_Periodloginselector_Perioddefaultloginpage : in Swagger.Nullable_UString; Auth_Periodloginselector_Perioddefaultchangepwpage : in Swagger.Nullable_UString; Auth_Periodloginselector_Periodhandle : in Swagger.UString_Vectors.Vector; Auth_Periodloginselector_Periodhandle_Periodall_Periodextensions : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAuthImplLoginSelectorHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Commons_Impl_Externalizer_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Externalizer_Perioddomains : in Swagger.UString_Vectors.Vector; Externalizer_Periodhost : in Swagger.Nullable_UString; Externalizer_Periodcontextpath : in Swagger.Nullable_UString; Externalizer_Periodencodedpath : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqCommonsImplExternalizerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Commons_Servlets_Root_Mapping_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Rootmapping_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComDayCqCommonsServletsRootMappingServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Code_Upgrade_Execution_Condition_Checke (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Codeupgradetasks : in Swagger.UString_Vectors.Vector; Codeupgradetaskfilters : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Upgrade_Task_Ignore_List (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Upgrade_Task_Ignore_List : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Version_Range_Task_Ignorelist (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Effective_Bundle_List_Path : in Swagger.Nullable_UString; Result : out .Models.ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Contentsync_Impl_Content_Sync_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Contentsync_Periodfallback_Periodauthorizable : in Swagger.Nullable_UString; Contentsync_Periodfallback_Periodupdateuser : in Swagger.Nullable_UString; Result : out .Models.ComDayCqContentsyncImplContentSyncManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Commons_Handler_Standard_Image_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_File_Threshold : in Swagger.Nullable_Integer; Large_Comment_Threshold : in Swagger.Nullable_Integer; Cq_Perioddam_Periodenable_Periodext_Periodmeta_Periodextraction : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCommonsHandlerStandardImageHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Commons_Metadata_Xmp_Filter_Black_White (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Xmp_Periodfilter_Periodapply_Whitelist : in Swagger.Nullable_Boolean; Xmp_Periodfilter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Xmp_Periodfilter_Periodapply_Blacklist : in Swagger.Nullable_Boolean; Xmp_Periodfilter_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCommonsMetadataXmpFilterBlackWhiteInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Commons_Util_Impl_Asset_Cache_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_Periodfile_Periodmin : in Swagger.Nullable_Integer; Cache_Periodapply : in Swagger.Nullable_Boolean; Mime_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCommonsUtilImplAssetCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Annotation_Pdf_Annotation_Pdf_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodwidth : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodheight : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodpadding_Periodhorizontal : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodpadding_Periodvertical : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodsize : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodcolor : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodfamily : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodlight : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodmargin_Text_Image : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodmin_Image_Height : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodwidth : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodcolor_Periodapproved : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodcolor_Periodrejected : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodcolor_Periodchanges_Requested : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodannotation_Marker_Periodwidth : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodasset_Periodminheight : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Asset_Move_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplAssetMoveListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Assethome_Asset_Home_Page_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Assetlinkshare_Adhoc_Asset_Share_Proxy_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodadhoc_Periodasset_Periodshare_Periodprezip_Periodmaxcontentsize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Cache_C_Q_Buffered_Image_Cache (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodimage_Periodcache_Periodmax_Periodmemory : in Swagger.Nullable_Integer; Cq_Perioddam_Periodimage_Periodcache_Periodmax_Periodage : in Swagger.Nullable_Integer; Cq_Perioddam_Periodimage_Periodcache_Periodmax_Perioddimension : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplCacheCQBufferedImageCacheInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Change_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Changeeventlistener_Periodobserved_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplDamChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Event_Purge_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Max_Saved_Activities : in Swagger.Nullable_Integer; Save_Interval : in Swagger.Nullable_Integer; Enable_Activity_Purge : in Swagger.Nullable_Boolean; Event_Types : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplDamEventPurgeServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Event_Recorder_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Event_Periodqueue_Periodlength : in Swagger.Nullable_Integer; Eventrecorder_Periodenabled : in Swagger.Nullable_Boolean; Eventrecorder_Periodblacklist : in Swagger.UString_Vectors.Vector; Eventrecorder_Periodeventtypes : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplDamEventRecorderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Event_Dam_Event_Audit_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplEventDamEventAuditListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Expiry_Notification_Job_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodexpiry_Periodnotification_Periodscheduler_Periodistimebased : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodexpiry_Periodnotification_Periodscheduler_Periodtimebased_Periodrule : in Swagger.Nullable_UString; Cq_Perioddam_Periodexpiry_Periodnotification_Periodscheduler_Periodperiod_Periodrule : in Swagger.Nullable_Integer; Send_Email : in Swagger.Nullable_Boolean; Asset_Expired_Limit : in Swagger.Nullable_Integer; Prior_Notification_Seconds : in Swagger.Nullable_Integer; Cq_Perioddam_Periodexpiry_Periodnotification_Periodurl_Periodprotocol : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplExpiryNotificationJobImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Foldermetadataschema_Folder_Metadata_Schema_Feat (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Gfx_Commons_Gfx_Renderer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Skip_Periodbufferedcache : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplGfxCommonsGfxRendererInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_E_P_S_Format_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mimetype : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplHandlerEPSFormatHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Indesign_Format_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mimetype : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplHandlerIndesignFormatHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Jpeg_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodenable_Periodext_Periodmeta_Periodextraction : in Swagger.Nullable_Boolean; Large_File_Threshold : in Swagger.Nullable_Integer; Large_Comment_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplHandlerJpegHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Xmp_N_Comm_X_M_P_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Xmphandler_Periodcq_Periodformats : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Index_Update_Monitor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jmx_Periodobjectname : in Swagger.Nullable_UString; Property_Periodmeasure_Periodenabled : in Swagger.Nullable_Boolean; Property_Periodname : in Swagger.Nullable_UString; Property_Periodmax_Periodwait_Periodms : in Swagger.Nullable_Integer; Property_Periodmax_Periodrate : in Swagger.Number; Fulltext_Periodmeasure_Periodenabled : in Swagger.Nullable_Boolean; Fulltext_Periodname : in Swagger.Nullable_UString; Fulltext_Periodmax_Periodwait_Periodms : in Swagger.Nullable_Integer; Fulltext_Periodmax_Periodrate : in Swagger.Number; Result : out .Models.ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Migration_M_Bean_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jmx_Periodobjectname : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplJmxAssetMigrationMBeanImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Update_Monitor_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jmx_Periodobjectname : in Swagger.Nullable_UString; Active : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplJmxAssetUpdateMonitorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataexport_Async_Metadata_Export_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Operation : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataimport_Async_Metadata_Import_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Operation : in Swagger.Nullable_UString; Operation_Icon : in Swagger.Nullable_UString; Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Lightbox_Lightbox_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodenable_Periodanonymous : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplLightboxLightboxServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Metadata_Editor_Select_Component_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Data : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Mime_Type_Asset_Upload_Restriction_Helper (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodallow_Periodall_Periodmime : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodallowed_Periodasset_Periodmimes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Mime_Type_Dam_Mime_Type_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Perioddetect_Periodasset_Periodmime_Periodfrom_Periodcontent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Missing_Metadata_Notification_Job (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodscheduler_Periodistimebased : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodscheduler_Periodtimebased_Periodrule : in Swagger.Nullable_UString; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodscheduler_Periodperiod_Periodrule : in Swagger.Nullable_Integer; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodrecipient : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplMissingMetadataNotificationJobInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Process_Send_Transient_Workflow_Completed_Email_Pr (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Notify on _Complete : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Process_Text_Extraction_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mime_Types : in Swagger.UString_Vectors.Vector; Max_Extract : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplProcessTextExtractionProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Rendition_Maker_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Xmp_Periodpropagate : in Swagger.Nullable_Boolean; Xmp_Periodexcludes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplRenditionMakerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Reports_Report_Export_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Batch_Size : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplReportsReportExportServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Reports_Report_Purge_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Max_Saved_Reports : in Swagger.Nullable_Integer; Time_Duration : in Swagger.Nullable_Integer; Enable_Report_Purge : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplReportsReportPurgeServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Download_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletAssetDownloadServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Status_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodstatus_Periodmaxassets : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletAssetStatusServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_X_M_P_Search_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodindesign_Periodmaxassets : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletAssetXMPSearchServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Batch_Metadata_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodmetadata_Periodasset_Perioddefault : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodmetadata_Periodcollection_Perioddefault : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodmetadata_Periodmaxresources : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletBatchMetadataServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Binary_Provider_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Perioddrm_Periodenable : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletBinaryProviderServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Collection_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollection_Periodproperties : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollection_Periodmaxcollections : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletCollectionServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Collections_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollections_Periodproperties : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollections_Periodlimit : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletCollectionsServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Companion_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; More _Info : in Swagger.Nullable_UString; Slashmnt_Slashoverlay_Slashdam_Slashgui_Slashcontent_Slashassets_Slashmoreinfo_Periodhtml_Slash_Dollar_Left_Curly_Bracketpath_Right_Curly_Bracket : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplServletCompanionServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Create_Asset_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Detect_Duplicate : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletCreateAssetServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Dam_Content_Disposition_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodmime_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodempty_Periodmime : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletDamContentDispositionFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Guid_Lookup_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodcore_Periodguidlookupfilter_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletGuidLookupFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Health_Check_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodsync_Periodworkflow_Periodid : in Swagger.Nullable_UString; Cq_Perioddam_Periodsync_Periodfolder_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplServletHealthCheckServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Metadata_Get_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplServletMetadataGetServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Multiple_License_Accept_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Perioddrm_Periodenable : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletMultipleLicenseAcceptServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Resource_Collection_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Download_Periodconfig : in Swagger.Nullable_UString; View_Periodselector : in Swagger.Nullable_UString; Send_Email : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletResourceCollectionServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Ui_Preview_Folder_Preview_Updater_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Create_Preview_Enabled : in Swagger.Nullable_Boolean; Update_Preview_Enabled : in Swagger.Nullable_Boolean; Queue_Size : in Swagger.Nullable_Integer; Folder_Preview_Rendition_Regex : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Impl_Unzip_Unzip_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodconfig_Periodunzip_Periodmaxuncompressedsize : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodunzip_Periodencoding : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplUnzipUnzipConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Process_Exif_Tool_Extract_Metadata_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodenable_Periodsha1 : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreProcessExifToolExtractMetadataProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Process_Extract_Metadata_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodenable_Periodsha1 : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreProcessExtractMetadataProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Core_Process_Metadata_Processor_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodenable_Periodsha1 : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodmetadata_Periodxssprotected_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreProcessMetadataProcessorProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Handler_Ffmpeg_Locator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Executable_Periodsearchpath : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamHandlerFfmpegLocatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Handler_Gibson_Fontmanager_Impl_Font_Manager_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Fontmgr_Periodsystem_Periodfont_Perioddir : in Swagger.UString_Vectors.Vector; Fontmgr_Periodadobe_Periodfont_Perioddir : in Swagger.Nullable_UString; Fontmgr_Periodcustomer_Periodfont_Perioddir : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Handler_Standard_Pdf_Pdf_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Raster_Periodannotation : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamHandlerStandardPdfPdfHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Handler_Standard_Ps_Post_Script_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Raster_Periodannotation : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamHandlerStandardPsPostScriptHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Handler_Standard_Psd_Psd_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_File_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamHandlerStandardPsdPsdHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Ids_Impl_I_D_S_Job_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Periodmultisession : in Swagger.Nullable_Boolean; Ids_Periodcc_Periodenable : in Swagger.Nullable_Boolean; Enable_Periodretry : in Swagger.Nullable_Boolean; Enable_Periodretry_Periodscripterror : in Swagger.Nullable_Boolean; Externalizer_Perioddomain_Periodcqhost : in Swagger.Nullable_UString; Externalizer_Perioddomain_Periodhttp : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamIdsImplIDSJobProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Ids_Impl_I_D_S_Pool_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Perioderrors_Periodto_Periodblacklist : in Swagger.Nullable_Integer; Retry_Periodinterval_Periodto_Periodwhitelist : in Swagger.Nullable_Integer; Connect_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Process_Periodlabel : in Swagger.Nullable_UString; Connection_Perioduse_Periodmax : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamIdsImplIDSPoolManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Indd_Impl_Handler_Indesign_X_M_P_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Extract_Periodpages : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamInddImplHandlerIndesignXMPHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Indd_Impl_Servlet_Snippet_Creation_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Snippetcreation_Periodmaxcollections : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamInddImplServletSnippetCreationServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Indd_Process_I_N_D_D_Media_Extract_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodindd_Periodpages_Periodregex : in Swagger.Nullable_UString; Ids_Periodjob_Perioddecoupled : in Swagger.Nullable_Boolean; Ids_Periodjob_Periodworkflow_Periodmodel : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamInddProcessINDDMediaExtractProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Data_Handler_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Batch_Periodcommit_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Report_Sync_Job (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Pim_Impl_Sourcing_Upload_Process_Product_Assets_Upload_Pro (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Delete_Periodzip_Periodfile : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_S7dam_Dynamic_Media_Config_Even (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periods7dam_Perioddynamicmediaconfigeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_Site_Catalyst_Report_Runner (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Create_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodpost_Periodoperation : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonPostServletsSetCreateHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Modify_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodpost_Periodoperation : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonPostServletsSetModifyHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_S7dam_Common_Process_Video_Thumbnail_Download_Process (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_S7dam_Common_S7dam_Dam_Change_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periods7dam_Perioddamchangeeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamS7damCommonS7damDamChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_S7dam_Common_Servlets_S7dam_Product_Info_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonServletsS7damProductInfoServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_S7dam_Common_Video_Impl_Video_Proxy_Client_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodmultipartupload_Periodminsize_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodmultipartupload_Periodpartsize_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodmultipartupload_Periodnumthread_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodhttp_Periodreadtimeout_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodhttp_Periodconnectiontimeout_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodhttp_Periodmaxretrycount_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Perioduploadprogress_Periodinterval_Periodname : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_A_P_I_Client_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Periodapiclient_Periodrecordsperpage_Periodnofilter_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periodscene7_Periodapiclient_Periodrecordsperpage_Periodwithfilter_Periodname : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamScene7ImplScene7APIClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Asset_Mime_Type_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Periodassetmimetypeservice_Periodmapping : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Configuration_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Periodconfigurationeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamScene7ImplScene7ConfigurationEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Dam_Change_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Perioddamchangeeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodscene7_Perioddamchangeeventlistener_Periodobserved_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamScene7ImplScene7DamChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Flash_Templates_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scene7_Flash_Templates_Periodrti : in Swagger.Nullable_UString; Scene7_Flash_Templates_Periodrsi : in Swagger.Nullable_UString; Scene7_Flash_Templates_Periodrb : in Swagger.Nullable_UString; Scene7_Flash_Templates_Periodrurl : in Swagger.Nullable_UString; Scene7_Flash_Template_Periodurl_Format_Parameter : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Upload_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Perioduploadservice_Periodactivejobtimeout_Periodlabel : in Swagger.Nullable_Integer; Cq_Perioddam_Periodscene7_Perioduploadservice_Periodconnectionmaxperroute_Periodlabel : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamScene7ImplScene7UploadServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Stock_Integration_Impl_Cache_Stock_Cache_Configuration_Ser (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Get_Cache_Expiration_Unit : in Swagger.Nullable_UString; Get_Cache_Expiration_Value : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Stock_Integration_Impl_Configuration_Stock_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Locale : in Swagger.Nullable_UString; Ims_Config : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamStockIntegrationImplConfigurationStockConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Dam_Video_Impl_Servlet_Video_Test_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamVideoImplServletVideoTestServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Extwidget_Servlets_Image_Sprite_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Width : in Swagger.Nullable_Integer; Max_Height : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqExtwidgetServletsImageSpriteServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Image_Internal_Font_Font_Helper (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Fontpath : in Swagger.UString_Vectors.Vector; Oversampling_Factor : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqImageInternalFontFontHelperInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Jcrclustersupport_Cluster_Start_Level_Controller (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cluster_Periodlevel_Periodenable : in Swagger.Nullable_Boolean; Cluster_Periodmaster_Periodlevel : in Swagger.Nullable_Integer; Cluster_Periodslave_Periodlevel : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqJcrclustersupportClusterStartLevelControllerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mailer_Default_Mail_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Smtp_Periodhost : in Swagger.Nullable_UString; Smtp_Periodport : in Swagger.Nullable_Integer; Smtp_Perioduser : in Swagger.Nullable_UString; Smtp_Periodpassword : in Swagger.Nullable_UString; From_Periodaddress : in Swagger.Nullable_UString; Smtp_Periodssl : in Swagger.Nullable_Boolean; Smtp_Periodstarttls : in Swagger.Nullable_Boolean; Debug_Periodemail : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqMailerDefaultMailServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mailer_Impl_Cq_Mailing_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodrecipient_Periodcount : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMailerImplCqMailingServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mailer_Impl_Email_Cq_Email_Template_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mailer_Periodemail_Periodcharset : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMailerImplEmailCqEmailTemplateFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mailer_Impl_Email_Cq_Retriever_Template_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mailer_Periodemail_Periodembed : in Swagger.Nullable_Boolean; Mailer_Periodemail_Periodcharset : in Swagger.Nullable_UString; Mailer_Periodemail_Periodretriever_User_I_D : in Swagger.Nullable_UString; Mailer_Periodemail_Periodretriever_User_P_W_D : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMailerImplEmailCqRetrieverTemplateFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mcm_Campaign_Impl_Integration_Config_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Aem_Periodmcm_Periodcampaign_Periodform_Constraints : in Swagger.UString_Vectors.Vector; Aem_Periodmcm_Periodcampaign_Periodpublic_Url : in Swagger.Nullable_UString; Aem_Periodmcm_Periodcampaign_Periodrelaxed_S_S_L : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqMcmCampaignImplIntegrationConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mcm_Campaign_Importer_Personalized_Text_Handler_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mcm_Core_Newsletter_Newsletter_Email_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; From_Periodaddress : in Swagger.Nullable_UString; Sender_Periodhost : in Swagger.Nullable_UString; Max_Periodbounce_Periodcount : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mcm_Impl_M_C_M_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Experience_Periodindirection : in Swagger.UString_Vectors.Vector; Touchpoint_Periodindirection : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqMcmImplMCMConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Click_Through_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Graphical_Click_Throug (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Lead_Form_C_T_A_Component (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_M_Box_Experience_Tag_Ha (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_Target_Component_Tag_H (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Notification_Impl_Notification_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComDayCqNotificationImplNotificationServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Personalization_Impl_Servlets_Targeting_Configuration_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forcelocation : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqPersonalizationImplServletsTargetingConfigurationServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Polling_Importer_Impl_Managed_Poll_Config_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Id : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Reference : in Swagger.Nullable_Boolean; Interval : in Swagger.Nullable_Integer; Expression : in Swagger.Nullable_UString; Source : in Swagger.Nullable_UString; Target : in Swagger.Nullable_UString; Login : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Result : out .Models.ComDayCqPollingImporterImplManagedPollConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Polling_Importer_Impl_Managed_Polling_Importer_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Importer_Perioduser : in Swagger.Nullable_UString; Result : out .Models.ComDayCqPollingImporterImplManagedPollingImporterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Polling_Importer_Impl_Polling_Importer_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Importer_Periodmin_Periodinterval : in Swagger.Nullable_Integer; Importer_Perioduser : in Swagger.Nullable_UString; Exclude_Periodpaths : in Swagger.UString_Vectors.Vector; Include_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqPollingImporterImplPollingImporterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Audit_Replication_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationAuditReplicationEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Content_Static_Content_Builder (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Host : in Swagger.Nullable_UString; Port : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationContentStaticContentBuilderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Impl_Agent_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.Nullable_UString; Service_User_Periodtarget : in Swagger.Nullable_UString; Agent_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComDayCqReplicationImplAgentManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Impl_Content_Durbo_Binary_Less_Content_Builder (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Binary_Periodthreshold : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationImplContentDurboBinaryLessContentBuilderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Impl_Content_Durbo_Durbo_Import_Configuration_Prov (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Preserve_Periodhierarchy_Periodnodes : in Swagger.Nullable_Boolean; Ignore_Periodversioning : in Swagger.Nullable_Boolean; Import_Periodacl : in Swagger.Nullable_Boolean; Save_Periodthreshold : in Swagger.Nullable_Integer; Preserve_Perioduser_Periodpaths : in Swagger.Nullable_Boolean; Preserve_Perioduuid : in Swagger.Nullable_Boolean; Preserve_Perioduuid_Periodnodetypes : in Swagger.UString_Vectors.Vector; Preserve_Perioduuid_Periodsubtrees : in Swagger.UString_Vectors.Vector; Auto_Periodcommit : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReplicationImplContentDurboDurboImportConfigurationProvInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Impl_Replication_Content_Factory_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Replication_Periodcontent_Perioduse_File_Storage : in Swagger.Nullable_Boolean; Replication_Periodcontent_Periodmax_Commit_Attempts : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationImplReplicationContentFactoryProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Impl_Replication_Receiver_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Receiver_Periodtmpfile_Periodthreshold : in Swagger.Nullable_Integer; Receiver_Periodpackages_Perioduse_Periodinstall : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReplicationImplReplicationReceiverImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Impl_Replicator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Distribute_Events : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReplicationImplReplicatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Impl_Reverse_Replicator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationImplReverseReplicatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Impl_Transport_Binary_Less_Transport_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Enabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqReplicationImplTransportBinaryLessTransportHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Replication_Impl_Transport_Http (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Enabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqReplicationImplTransportHttpInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Reporting_Impl_Cache_Cache_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repcache_Periodenable : in Swagger.Nullable_Boolean; Repcache_Periodttl : in Swagger.Nullable_Integer; Repcache_Periodmax : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReportingImplCacheCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Reporting_Impl_Config_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repconf_Periodtimezone : in Swagger.Nullable_UString; Repconf_Periodlocale : in Swagger.Nullable_UString; Repconf_Periodsnapshots : in Swagger.Nullable_UString; Repconf_Periodrepdir : in Swagger.Nullable_UString; Repconf_Periodhourofday : in Swagger.Nullable_Integer; Repconf_Periodminofhour : in Swagger.Nullable_Integer; Repconf_Periodmaxrows : in Swagger.Nullable_Integer; Repconf_Periodfakedata : in Swagger.Nullable_Boolean; Repconf_Periodsnapshotuser : in Swagger.Nullable_UString; Repconf_Periodenforcesnapshotuser : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReportingImplConfigServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Reporting_Impl_R_Log_Analyzer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Request_Periodlog_Periodoutput : in Swagger.Nullable_UString; Result : out .Models.ComDayCqReportingImplRLogAnalyzerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Service_Periodbad_Link_Tolerance_Interval : in Swagger.Nullable_Integer; Service_Periodcheck_Override_Patterns : in Swagger.UString_Vectors.Vector; Service_Periodcache_Broken_Internal_Links : in Swagger.Nullable_Boolean; Service_Periodspecial_Link_Prefix : in Swagger.UString_Vectors.Vector; Service_Periodspecial_Link_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkCheckerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Good_Link_Test_Interval : in Swagger.Nullable_Integer; Bad_Link_Test_Interval : in Swagger.Nullable_Integer; Link_Unused_Interval : in Swagger.Nullable_Integer; Connection_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkCheckerTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Transformer_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Linkcheckertransformer_Perioddisable_Rewriting : in Swagger.Nullable_Boolean; Linkcheckertransformer_Perioddisable_Checking : in Swagger.Nullable_Boolean; Linkcheckertransformer_Periodmap_Cache_Size : in Swagger.Nullable_Integer; Linkcheckertransformer_Periodstrict_Extension_Check : in Swagger.Nullable_Boolean; Linkcheckertransformer_Periodstrip_Htmlt_Extension : in Swagger.Nullable_Boolean; Linkcheckertransformer_Periodrewrite_Elements : in Swagger.UString_Vectors.Vector; Linkcheckertransformer_Periodstrip_Extension_Path_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Info_Storage_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodmax_Links_Per_Host : in Swagger.Nullable_Integer; Service_Periodsave_External_Link_References : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Rewriter_Processor_Impl_Html_Parser_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Htmlparser_Periodprocess_Tags : in Swagger.UString_Vectors.Vector; Htmlparser_Periodpreserve_Camel_Case : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqRewriterProcessorImplHtmlParserFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Search_Impl_Builder_Query_Builder_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Excerpt_Periodproperties : in Swagger.UString_Vectors.Vector; Cache_Periodmax_Periodentries : in Swagger.Nullable_Integer; Cache_Periodentry_Periodlifetime : in Swagger.Nullable_Integer; Xpath_Periodunion : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqSearchImplBuilderQueryBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Search_Suggest_Impl_Suggestion_Index_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path_Builder_Periodtarget : in Swagger.Nullable_UString; Suggest_Periodbasepath : in Swagger.Nullable_UString; Result : out .Models.ComDayCqSearchSuggestImplSuggestionIndexManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Searchpromote_Impl_Publish_Search_Promote_Config_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsearchpromote_Periodconfighandler_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Searchpromote_Impl_Search_Promote_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsearchpromote_Periodconfiguration_Periodserver_Perioduri : in Swagger.Nullable_UString; Cq_Periodsearchpromote_Periodconfiguration_Periodenvironment : in Swagger.Nullable_UString; Connection_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqSearchpromoteImplSearchPromoteServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Security_A_C_L_Setup (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaclsetup_Periodrules : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqSecurityACLSetupInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Statistics_Impl_Statistics_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Path : in Swagger.Nullable_UString; Workspace : in Swagger.Nullable_UString; Keywords_Path : in Swagger.Nullable_UString; Async_Entries : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqStatisticsImplStatisticsServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Tagging_Impl_Jcr_Tag_Manager_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Validation_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqTaggingImplJcrTagManagerFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Tagging_Impl_Search_Tag_Predicate_Evaluator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ignore_Path : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqTaggingImplSearchTagPredicateEvaluatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Tagging_Impl_Tag_Garbage_Collector (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComDayCqTaggingImplTagGarbageCollectorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Contentsync_Impl_Handler_Pages_Update_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodimageresourcetypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Contentsync_Impl_Rewriter_Path_Rewriter_Transformer_Factor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodmapping_Periodlinks : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodmapping_Periodclientlibs : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodmapping_Periodimages : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodattribute_Periodpattern : in Swagger.Nullable_UString; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodclientlibrary_Periodpattern : in Swagger.Nullable_UString; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodclientlibrary_Periodreplace : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Authoring_U_I_Mode_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Authoring_U_I_Mode_Service_Perioddefault : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplAuthoringUIModeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Commands_W_C_M_Command_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmcommandservlet_Perioddelete_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplCommandsWCMCommandServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Devicedetection_Device_Identification_Mode_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dim_Perioddefault_Periodmode : in Swagger.Nullable_UString; Dim_Periodappcache_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Page_Event_Audit_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Configured : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplEventPageEventAuditListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Page_Post_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplEventPagePostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Repository_Change_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Paths : in Swagger.UString_Vectors.Vector; Excluded_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplEventRepositoryChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Template_Post_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Paths : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplEventTemplatePostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Language_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Langmgr_Periodlist_Periodpath : in Swagger.Nullable_UString; Langmgr_Periodcountry_Perioddefault : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplLanguageManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Link_Checker_Configuration_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Link_Periodexpired_Periodprefix : in Swagger.Nullable_UString; Link_Periodexpired_Periodremove : in Swagger.Nullable_Boolean; Link_Periodexpired_Periodsuffix : in Swagger.Nullable_UString; Link_Periodinvalid_Periodprefix : in Swagger.Nullable_UString; Link_Periodinvalid_Periodremove : in Swagger.Nullable_Boolean; Link_Periodinvalid_Periodsuffix : in Swagger.Nullable_UString; Link_Periodpredated_Periodprefix : in Swagger.Nullable_UString; Link_Periodpredated_Periodremove : in Swagger.Nullable_Boolean; Link_Periodpredated_Periodsuffix : in Swagger.Nullable_UString; Link_Periodwcmmodes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Page_Page_Info_Aggregator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Page_Periodinfo_Periodprovider_Periodproperty_Periodregex_Perioddefault : in Swagger.Nullable_UString; Page_Periodinfo_Periodprovider_Periodproperty_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplPagePageInfoAggregatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Page_Page_Manager_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Illegal_Char_Mapping : in Swagger.Nullable_UString; Page_Sub_Tree_Activation_Check : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplPagePageManagerFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_References_Content_Content_Reference_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Content_Reference_Config_Periodresource_Types : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplReferencesContentContentReferenceConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Asset_View_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dam_Periodshowexpired : in Swagger.Nullable_Boolean; Dam_Periodshowhidden : in Swagger.Nullable_Boolean; Tag_Title_Search : in Swagger.Nullable_Boolean; Guess_Total : in Swagger.Nullable_UString; Dam_Periodexpiry_Property : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Connector_Connector_Vie (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Item_Periodresource_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Page_View_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Guess_Total : in Swagger.Nullable_UString; Tag_Title_Search : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Find_Replace_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scope : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplServletsFindReplaceServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Reference_Search_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Referencesearchservlet_Periodmax_References_Per_Page : in Swagger.Nullable_Integer; Referencesearchservlet_Periodmax_Pages : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmCoreImplServletsReferenceSearchServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Thumbnail_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Workspace : in Swagger.Nullable_UString; Dimensions : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplServletsThumbnailServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Utils_Default_Page_Name_Validator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Non_Valid_Chars : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Variants_Page_Variants_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodexternalizer_Perioddomain : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplVariantsPageVariantsProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Version_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Versionmanager_Periodcreate_Version_On_Activation : in Swagger.Nullable_Boolean; Versionmanager_Periodpurging_Enabled : in Swagger.Nullable_Boolean; Versionmanager_Periodpurge_Paths : in Swagger.UString_Vectors.Vector; Versionmanager_Periodiv_Paths : in Swagger.UString_Vectors.Vector; Versionmanager_Periodmax_Age_Days : in Swagger.Nullable_Integer; Versionmanager_Periodmax_Number_Versions : in Swagger.Nullable_Integer; Versionmanager_Periodmin_Number_Versions : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmCoreImplVersionManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Version_Purge_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Versionpurge_Periodpaths : in Swagger.UString_Vectors.Vector; Versionpurge_Periodrecursive : in Swagger.Nullable_Boolean; Versionpurge_Periodmax_Versions : in Swagger.Nullable_Integer; Versionpurge_Periodmin_Versions : in Swagger.Nullable_Integer; Versionpurge_Periodmax_Age_Days : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmCoreImplVersionPurgeTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_W_C_M_Debug_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmdbgfilter_Periodenabled : in Swagger.Nullable_Boolean; Wcmdbgfilter_Periodjsp_Debug : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplWCMDebugFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_W_C_M_Developer_Mode_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmdevmodefilter_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplWCMDeveloperModeFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Impl_Warp_Time_Warp_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filter_Periodorder : in Swagger.Nullable_UString; Filter_Periodscope : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplWarpTimeWarpFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Mvt_M_V_T_Statistics_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mvtstatistics_Periodtrackingurl : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreMvtMVTStatisticsImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_Stats_Page_View_Statistics_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pageviewstatistics_Periodtrackingurl : in Swagger.Nullable_UString; Pageviewstatistics_Periodtrackingscript_Periodenabled : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreStatsPageViewStatisticsImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Core_W_C_M_Request_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmfilter_Periodmode : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreWCMRequestFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Design_Package_Importer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extract_Periodfilter : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmDesignimporterDesignPackageImporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Builder_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filepattern : in Swagger.Nullable_UString; Build_Periodpage_Periodnodes : in Swagger.Nullable_Boolean; Build_Periodclient_Periodlibs : in Swagger.Nullable_Boolean; Build_Periodcanvas_Periodcomponent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmDesignimporterImplCanvasBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Page_Delete_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Min_Thread_Pool_Size : in Swagger.Nullable_Integer; Max_Thread_Pool_Size : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Entry_Preprocessor_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Search_Periodpattern : in Swagger.Nullable_UString; Replace_Periodpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterImplEntryPreprocessorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Mobile_Canvas_Builder_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filepattern : in Swagger.Nullable_UString; Device_Periodgroups : in Swagger.UString_Vectors.Vector; Build_Periodpage_Periodnodes : in Swagger.Nullable_Boolean; Build_Periodclient_Periodlibs : in Swagger.Nullable_Boolean; Build_Periodcanvas_Periodcomponent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Canvas_Compone (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Compon (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Tag_Han (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Head_Tag_Handle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_I_Frame_Tag_Hand (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Image_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Img_Tag_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Inline_Script_T (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Link_Tag_Handle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Meta_Tag_Handle (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Non_Script_Tag_H (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Parsys_Compone (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Script_Tag_Hand (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Style_Tag_Handl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Text_Component (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Componen (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Tag_Handl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Chooser_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodname : in Swagger.Nullable_UString; Sling_Periodservlet_Periodresource_Types : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Forms_Periodformchooserservlet_Periodadvansesearch_Periodrequire : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmFoundationFormsImplFormChooserServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Paragraph_Post_Processor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forms_Periodformparagraphpostprocessor_Periodenabled : in Swagger.Nullable_Boolean; Forms_Periodformparagraphpostprocessor_Periodformresourcetypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Forms_Handling_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name_Periodwhitelist : in Swagger.Nullable_UString; Allow_Periodexpressions : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmFoundationFormsImplFormsHandlingServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Mail_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Resource_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resource_Periodblacklist : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmFoundationFormsImplMailServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Adaptive_Image_Component_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapt_Periodsupported_Periodwidths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationImplAdaptiveImageComponentServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Foundation_Impl_H_T_T_P_Auth_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Auth_Periodhttp_Periodnologin : in Swagger.Nullable_Boolean; Auth_Periodhttp_Periodrealm : in Swagger.Nullable_UString; Auth_Perioddefault_Periodloginpage : in Swagger.Nullable_UString; Auth_Periodcred_Periodform : in Swagger.UString_Vectors.Vector; Auth_Periodcred_Periodutf8 : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationImplHTTPAuthHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Page_Impressions_Tracker (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodauth_Periodrequirements : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmFoundationImplPageImpressionsTrackerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Page_Redirect_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Excluded_Periodresource_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationImplPageRedirectServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Foundation_Security_Impl_Default_Attachment_Type_Blacklist (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Baseline_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Foundation_Security_Impl_Safer_Sling_Post_Validator_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Binary_Periodparameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Modifier_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Typehint_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resourcetype_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Mobile_Core_Impl_Device_Device_Info_Transformer_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Device_Periodinfo_Periodtransformer_Periodenabled : in Swagger.Nullable_Boolean; Device_Periodinfo_Periodtransformer_Periodcss_Periodstyle : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Mobile_Core_Impl_Redirect_Redirect_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Redirect_Periodenabled : in Swagger.Nullable_Boolean; Redirect_Periodstats_Periodenabled : in Swagger.Nullable_Boolean; Redirect_Periodextensions : in Swagger.UString_Vectors.Vector; Redirect_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMobileCoreImplRedirectRedirectFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Copy_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Contentcopyaction_Periodorder_Periodstyle : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMsmImplActionsContentCopyActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Delete_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsContentDeleteActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Update_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodignored_Mixin : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsContentUpdateActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Order_Children_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Page_Move_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodimpl_Periodactions_Periodpagemove_Periodprop_Reference_Update : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmMsmImplActionsPageMoveActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_References_Update_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodimpl_Periodaction_Periodreferencesupdate_Periodprop_Update_Nested : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Version_Copy_Action_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsVersionCopyActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Msm_Impl_Live_Relationship_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Liverelationshipmgr_Periodrelationsconfig_Perioddefault : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMsmImplLiveRelationshipManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Msm_Impl_Rollout_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Rolloutmgr_Periodexcludedprops_Perioddefault : in Swagger.UString_Vectors.Vector; Rolloutmgr_Periodexcludedparagraphprops_Perioddefault : in Swagger.UString_Vectors.Vector; Rolloutmgr_Periodexcludednodetypes_Perioddefault : in Swagger.UString_Vectors.Vector; Rolloutmgr_Periodthreadpool_Periodmaxsize : in Swagger.Nullable_Integer; Rolloutmgr_Periodthreadpool_Periodmaxshutdowntime : in Swagger.Nullable_Integer; Rolloutmgr_Periodthreadpool_Periodpriority : in Swagger.Nullable_UString; Rolloutmgr_Periodcommit_Periodsize : in Swagger.Nullable_Integer; Rolloutmgr_Periodconflicthandling_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmMsmImplRolloutManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Msm_Impl_Servlets_Audit_Log_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlogservlet_Perioddefault_Periodevents_Periodcount : in Swagger.Nullable_Integer; Auditlogservlet_Perioddefault_Periodpath : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMsmImplServletsAuditLogServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Notification_Email_Impl_Email_Channel (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Email_Periodfrom : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmNotificationEmailImplEmailChannelInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Notification_Impl_Notification_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmNotificationImplNotificationManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Scripting_Impl_B_V_P_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodday_Periodcq_Periodwcm_Periodscripting_Periodbvp_Periodscript_Periodengines : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmScriptingImplBVPManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Undo_Undo_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodundo_Periodenabled : in Swagger.Nullable_Boolean; Cq_Periodwcm_Periodundo_Periodpath : in Swagger.Nullable_UString; Cq_Periodwcm_Periodundo_Periodvalidity : in Swagger.Nullable_Integer; Cq_Periodwcm_Periodundo_Periodsteps : in Swagger.Nullable_Integer; Cq_Periodwcm_Periodundo_Periodpersistence : in Swagger.Nullable_UString; Cq_Periodwcm_Periodundo_Periodpersistence_Periodmode : in Swagger.Nullable_Boolean; Cq_Periodwcm_Periodundo_Periodmarkermode : in Swagger.Nullable_UString; Cq_Periodwcm_Periodundo_Periodwhitelist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodundo_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmUndoUndoConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Webservicesupport_Impl_Replication_Event_Listener (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Flush agents : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmWebservicesupportImplReplicationEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Workflow_Impl_Wcm_Workflow_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Min_Thread_Pool_Size : in Swagger.Nullable_Integer; Max_Thread_Pool_Size : in Swagger.Nullable_Integer; Cq_Periodwcm_Periodworkflow_Periodterminate_Periodon_Periodactivate : in Swagger.Nullable_Boolean; Cq_Periodwcm_Periodworklfow_Periodterminate_Periodexclusion_Periodlist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmWorkflowImplWcmWorkflowServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Wcm_Workflow_Impl_Workflow_Package_Info_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Workflowpackageinfoprovider_Periodfilter : in Swagger.UString_Vectors.Vector; Workflowpackageinfoprovider_Periodfilter_Periodrootpath : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Widget_Impl_Html_Library_Manager_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodclientmanager : in Swagger.Nullable_UString; Htmllibmanager_Perioddebug : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug_Periodconsole : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug_Periodinit_Periodjs : in Swagger.Nullable_UString; Htmllibmanager_Perioddefaultthemename : in Swagger.Nullable_UString; Htmllibmanager_Perioddefaultuserthemename : in Swagger.Nullable_UString; Htmllibmanager_Periodfirebuglite_Periodpath : in Swagger.Nullable_UString; Htmllibmanager_Periodforce_C_Q_Url_Info : in Swagger.Nullable_Boolean; Htmllibmanager_Periodgzip : in Swagger.Nullable_Boolean; Htmllibmanager_Periodmaxage : in Swagger.Nullable_Integer; Htmllibmanager_Periodmax_Data_Uri_Size : in Swagger.Nullable_Integer; Htmllibmanager_Periodminify : in Swagger.Nullable_Boolean; Htmllibmanager_Periodpath_Periodlist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodtiming : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWidgetImplHtmlLibraryManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Widget_Impl_Widget_Extension_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extendable_Periodwidgets : in Swagger.UString_Vectors.Vector; Widgetextensionprovider_Perioddebug : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWidgetImplWidgetExtensionProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Workflow_Impl_Email_E_Mail_Notification_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; From_Periodaddress : in Swagger.Nullable_UString; Host_Periodprefix : in Swagger.Nullable_UString; Notify_Periodonabort : in Swagger.Nullable_Boolean; Notify_Periodoncomplete : in Swagger.Nullable_Boolean; Notify_Periodoncontainercomplete : in Swagger.Nullable_Boolean; Notify_Perioduseronly : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWorkflowImplEmailEMailNotificationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Cq_Workflow_Impl_Email_Task_E_Mail_Notification_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Notify_Periodonupdate : in Swagger.Nullable_Boolean; Notify_Periodoncomplete : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWorkflowImplEmailTaskEMailNotificationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Crx_Security_Token_Impl_Impl_Token_Authentication_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Token_Periodrequired_Periodattr : in Swagger.Nullable_UString; Token_Periodalternate_Periodurl : in Swagger.Nullable_UString; Token_Periodencapsulated : in Swagger.Nullable_Boolean; Skip_Periodtoken_Periodrefresh : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Com_Day_Crx_Security_Token_Impl_Token_Cleanup_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Periodtoken_Periodcleanup_Periodtask : in Swagger.Nullable_Boolean; Scheduler_Periodexpression : in Swagger.Nullable_UString; Batch_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCrxSecurityTokenImplTokenCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Guide_Localization_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Supported_Locales : in Swagger.UString_Vectors.Vector; Localizable _Properties : in Swagger.UString_Vectors.Vector; Result : out .Models.GuideLocalizationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Messaging_User_Component_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.MessagingUserComponentFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Aries_Jmx_Framework_State_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Attribute_Change_Notification_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheAriesJmxFrameworkStateConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Eventadmin_Impl_Event_Admin (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Thread_Pool_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Async_To_Sync_Thread_Ratio : in Swagger.Number; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Timeout : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Require_Topic : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Ignore_Timeout : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Ignore_Topic : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheFelixEventadminImplEventAdminInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Http (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttp_Periodhost : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodenable : in Swagger.Nullable_Boolean; Org_Periodosgi_Periodservice_Periodhttp_Periodport : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodtimeout : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttps_Periodenable : in Swagger.Nullable_Boolean; Org_Periodosgi_Periodservice_Periodhttp_Periodport_Periodsecure : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodclientcertificate : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodcontext_Path : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodmbeans : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttp_Periodsession_Periodtimeout : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodthreadpool_Periodmax : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodacceptors : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodselectors : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodheader_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodrequest_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodresponse_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodmax_Form_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodpath_Exclusions : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodciphersuites_Periodexcluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodciphersuites_Periodincluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodsend_Server_Header : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodprotocols_Periodincluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodprotocols_Periodexcluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodproxy_Periodload_Periodbalancer_Periodconnection_Periodenable : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodrenegotiate_Allowed : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodsession_Periodcookie_Periodhttp_Only : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodsession_Periodcookie_Periodsecure : in Swagger.Nullable_Boolean; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Id_Path_Parameter_Name : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Checking_Remote_Session_Id_Encoding : in Swagger.Nullable_Boolean; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Cookie : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Domain : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Path : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Max_Age : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodname : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodjetty_Periodgziphandler_Periodenable : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodmin_Gzip_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodcompression_Level : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodinflate_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodsync_Flush : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_User_Agents : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodincluded_Methods : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_Methods : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodincluded_Paths : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_Paths : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodincluded_Mime_Types : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_Mime_Types : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttp_Periodsession_Periodinvalidate : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttp_Periodsession_Perioduniqueid : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheFelixHttpInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Http_Sslfilter_Ssl_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ssl_Forward_Periodheader : in Swagger.Nullable_UString; Ssl_Forward_Periodvalue : in Swagger.Nullable_UString; Ssl_Forward_Cert_Periodheader : in Swagger.Nullable_UString; Rewrite_Periodabsolute_Periodurls : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheFelixHttpSslfilterSslFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Jaas_Configuration_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodranking : in Swagger.Nullable_Integer; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Jaas_Periodclassname : in Swagger.Nullable_UString; Jaas_Periodoptions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheFelixJaasConfigurationFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Jaas_Configuration_Spi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jaas_Perioddefault_Realm_Name : in Swagger.Nullable_UString; Jaas_Periodconfig_Provider_Name : in Swagger.Nullable_UString; Jaas_Periodglobal_Config_Policy : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixJaasConfigurationSpiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Scr_Scr_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ds_Periodloglevel : in Swagger.Nullable_Integer; Ds_Periodfactory_Periodenabled : in Swagger.Nullable_Boolean; Ds_Perioddelayed_Periodkeep_Instances : in Swagger.Nullable_Boolean; Ds_Periodlock_Periodtimeout_Periodmilliseconds : in Swagger.Nullable_Integer; Ds_Periodstop_Periodtimeout_Periodmilliseconds : in Swagger.Nullable_Integer; Ds_Periodglobal_Periodextender : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheFelixScrScrServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Systemready_Impl_Components_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Components_Periodlist : in Swagger.UString_Vectors.Vector; P_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplComponentsCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Systemready_Impl_Framework_Start_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Timeout : in Swagger.Nullable_Integer; Target_Periodstart_Periodlevel : in Swagger.Nullable_Integer; Target_Periodstart_Periodlevel_Periodprop_Periodname : in Swagger.Nullable_UString; P_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplFrameworkStartCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Systemready_Impl_Services_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Services_Periodlist : in Swagger.UString_Vectors.Vector; P_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplServicesCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Systemready_Impl_Servlet_System_Alive_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodservlet_Periodpattern : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplServletSystemAliveServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Systemready_Impl_Servlet_System_Ready_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodservlet_Periodpattern : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplServletSystemReadyServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Systemready_System_Ready_Monitor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Poll_Periodinterval : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheFelixSystemreadySystemReadyMonitorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Webconsole_Internal_Servlet_Osgi_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Manager_Periodroot : in Swagger.Nullable_UString; Http_Periodservice_Periodfilter : in Swagger.Nullable_UString; Default_Periodrender : in Swagger.Nullable_UString; Realm : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Category : in Swagger.Nullable_UString; Locale : in Swagger.Nullable_UString; Loglevel : in Swagger.Nullable_Integer; Plugins : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixWebconsoleInternalServletOsgiManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Webconsole_Plugins_Event_Internal_Plugin_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheFelixWebconsolePluginsEventInternalPluginServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Felix_Webconsole_Plugins_Memoryusage_Internal_Memory_Usage_Co (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Felix_Periodmemoryusage_Perioddump_Periodthreshold : in Swagger.Nullable_Integer; Felix_Periodmemoryusage_Perioddump_Periodinterval : in Swagger.Nullable_Integer; Felix_Periodmemoryusage_Perioddump_Periodlocation : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Http_Proxyconfigurator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Proxy_Periodenabled : in Swagger.Nullable_Boolean; Proxy_Periodhost : in Swagger.Nullable_UString; Proxy_Periodport : in Swagger.Nullable_Integer; Proxy_Perioduser : in Swagger.Nullable_UString; Proxy_Periodpassword : in Swagger.Nullable_UString; Proxy_Periodexceptions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheHttpProxyconfiguratorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_Data_Store_Text_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dir : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_File_Data_Store (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mongouri : in Swagger.Nullable_UString; Db : in Swagger.Nullable_UString; Socket_Keep_Alive : in Swagger.Nullable_Boolean; Cache : in Swagger.Nullable_Integer; Node_Cache_Percentage : in Swagger.Nullable_Integer; Prev_Doc_Cache_Percentage : in Swagger.Nullable_Integer; Children_Cache_Percentage : in Swagger.Nullable_Integer; Diff_Cache_Percentage : in Swagger.Nullable_Integer; Cache_Segment_Count : in Swagger.Nullable_Integer; Cache_Stack_Move_Distance : in Swagger.Nullable_Integer; Blob_Cache_Size : in Swagger.Nullable_Integer; Persistent_Cache : in Swagger.Nullable_UString; Journal_Cache : in Swagger.Nullable_UString; Custom_Blob_Store : in Swagger.Nullable_Boolean; Journal_G_C_Interval : in Swagger.Nullable_Integer; Journal_G_C_Max_Age : in Swagger.Nullable_Integer; Prefetch_External_Changes : in Swagger.Nullable_Boolean; Role : in Swagger.Nullable_UString; Version_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Version_G_C_Expression : in Swagger.Nullable_UString; Version_G_C_Time_Limit_In_Secs : in Swagger.Nullable_Integer; Blob_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Blob_Track_Snapshot_Interval_In_Secs : in Swagger.Nullable_Integer; Repository_Periodhome : in Swagger.Nullable_UString; Max_Replication_Lag_In_Secs : in Swagger.Nullable_Integer; Document_Store_Type : in Swagger.Nullable_UString; Bundling_Disabled : in Swagger.Nullable_Boolean; Update_Limit : in Swagger.Nullable_Integer; Persistent_Cache_Includes : in Swagger.UString_Vectors.Vector; Lease_Check_Mode : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service_Pre (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Persistent_Cache_Includes : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Secondary_Secondary_Store_Cac (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Included_Paths : in Swagger.UString_Vectors.Vector; Enable_Async_Observer : in Swagger.Nullable_Boolean; Observer_Queue_Size : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Async_Indexer_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Async_Configs : in Swagger.UString_Vectors.Vector; Lease_Time_Out_Minutes : in Swagger.Nullable_Integer; Failing_Index_Timeout_Seconds : in Swagger.Nullable_Integer; Error_Warn_Interval_Seconds : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Lucene_Lucene_Index_Provider_Serv (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled : in Swagger.Nullable_Boolean; Debug : in Swagger.Nullable_Boolean; Local_Index_Dir : in Swagger.Nullable_UString; Enable_Open_Index_Async : in Swagger.Nullable_Boolean; Thread_Pool_Size : in Swagger.Nullable_Integer; Prefetch_Index_Files : in Swagger.Nullable_Boolean; Extracted_Text_Cache_Size_In_M_B : in Swagger.Nullable_Integer; Extracted_Text_Cache_Expiry_In_Secs : in Swagger.Nullable_Integer; Always_Use_Pre_Extracted_Cache : in Swagger.Nullable_Boolean; Boolean_Clause_Limit : in Swagger.Nullable_Integer; Enable_Hybrid_Indexing : in Swagger.Nullable_Boolean; Hybrid_Queue_Size : in Swagger.Nullable_Integer; Disable_Stored_Index_Definition : in Swagger.Nullable_Boolean; Deleted_Blobs_Collection_Enabled : in Swagger.Nullable_Boolean; Prop_Index_Cleaner_Interval_In_Secs : in Swagger.Nullable_Integer; Enable_Single_Blob_Index_Files : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Embedded_Solr_Server_Co (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodhome_Periodpath : in Swagger.Nullable_UString; Solr_Periodcore_Periodname : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Node_State_Solr_Servers (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Oak_Solr_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path_Perioddesc_Periodfield : in Swagger.Nullable_UString; Path_Periodchild_Periodfield : in Swagger.Nullable_UString; Path_Periodparent_Periodfield : in Swagger.Nullable_UString; Path_Periodexact_Periodfield : in Swagger.Nullable_UString; Catch_Periodall_Periodfield : in Swagger.Nullable_UString; Collapsed_Periodpath_Periodfield : in Swagger.Nullable_UString; Path_Perioddepth_Periodfield : in Swagger.Nullable_UString; Commit_Periodpolicy : in Swagger.Nullable_UString; Rows : in Swagger.Nullable_Integer; Path_Periodrestrictions : in Swagger.Nullable_Boolean; Property_Periodrestrictions : in Swagger.Nullable_Boolean; Primarytypes_Periodrestrictions : in Swagger.Nullable_Boolean; Ignored_Periodproperties : in Swagger.UString_Vectors.Vector; Used_Periodproperties : in Swagger.UString_Vectors.Vector; Type_Periodmappings : in Swagger.UString_Vectors.Vector; Property_Periodmappings : in Swagger.UString_Vectors.Vector; Collapse_Periodjcrcontent_Periodnodes : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Remote_Solr_Server_Conf (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodhttp_Periodurl : in Swagger.Nullable_UString; Solr_Periodzk_Periodhost : in Swagger.Nullable_UString; Solr_Periodcollection : in Swagger.Nullable_UString; Solr_Periodsocket_Periodtimeout : in Swagger.Nullable_Integer; Solr_Periodconnection_Periodtimeout : in Swagger.Nullable_Integer; Solr_Periodshards_Periodno : in Swagger.Nullable_Integer; Solr_Periodreplication_Periodfactor : in Swagger.Nullable_Integer; Solr_Periodconf_Perioddir : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Query_Index_Provid (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Periodaggregation : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Server_Provider_Se (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Server_Periodtype : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Metric_Statistics_Provider_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Observation_Change_Collector_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Items : in Swagger.Nullable_Integer; Max_Path_Depth : in Swagger.Nullable_Integer; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Query_Query_Engine_Settings_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Limit_In_Memory : in Swagger.Nullable_Integer; Query_Limit_Reads : in Swagger.Nullable_Integer; Query_Fail_Traversal : in Swagger.Nullable_Boolean; Fast_Query_Size : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Authentication_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodjackrabbit_Periodoak_Periodauthentication_Periodapp_Name : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Periodauthentication_Periodconfig_Spi_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Ldap_Impl_Ldap_Identi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodname : in Swagger.Nullable_UString; Host_Periodname : in Swagger.Nullable_UString; Host_Periodport : in Swagger.Nullable_Integer; Host_Periodssl : in Swagger.Nullable_Boolean; Host_Periodtls : in Swagger.Nullable_Boolean; Host_Periodno_Cert_Check : in Swagger.Nullable_Boolean; Bind_Perioddn : in Swagger.Nullable_UString; Bind_Periodpassword : in Swagger.Nullable_UString; Search_Timeout : in Swagger.Nullable_UString; Admin_Pool_Periodmax_Active : in Swagger.Nullable_Integer; Admin_Pool_Periodlookup_On_Validate : in Swagger.Nullable_Boolean; User_Pool_Periodmax_Active : in Swagger.Nullable_Integer; User_Pool_Periodlookup_On_Validate : in Swagger.Nullable_Boolean; User_Periodbase_D_N : in Swagger.Nullable_UString; User_Periodobjectclass : in Swagger.UString_Vectors.Vector; User_Periodid_Attribute : in Swagger.Nullable_UString; User_Periodextra_Filter : in Swagger.Nullable_UString; User_Periodmake_Dn_Path : in Swagger.Nullable_Boolean; Group_Periodbase_D_N : in Swagger.Nullable_UString; Group_Periodobjectclass : in Swagger.UString_Vectors.Vector; Group_Periodname_Attribute : in Swagger.Nullable_UString; Group_Periodextra_Filter : in Swagger.Nullable_UString; Group_Periodmake_Dn_Path : in Swagger.Nullable_Boolean; Group_Periodmember_Attribute : in Swagger.Nullable_UString; Use_Uid_For_Ext_Id : in Swagger.Nullable_Boolean; Customattributes : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Token_Token_Configura (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Token_Expiration : in Swagger.Nullable_UString; Token_Length : in Swagger.Nullable_UString; Token_Refresh : in Swagger.Nullable_Boolean; Token_Cleanup_Threshold : in Swagger.Nullable_Integer; Password_Hash_Algorithm : in Swagger.Nullable_UString; Password_Hash_Iterations : in Swagger.Nullable_Integer; Password_Salt_Size : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Security_Authorization_Authorization_Configur (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Permissions_Jr2 : in Swagger.Nullable_UString; Import_Behavior : in Swagger.Nullable_UString; Read_Paths : in Swagger.UString_Vectors.Vector; Administrative_Principals : in Swagger.UString_Vectors.Vector; Configuration_Ranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Security_Internal_Security_Provider_Registrati (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Required_Service_Pids : in Swagger.UString_Vectors.Vector; Authorization_Composition_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Security_User_Random_Authorizable_Node_Name (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Length : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Security_User_User_Configuration_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Users_Path : in Swagger.Nullable_UString; Groups_Path : in Swagger.Nullable_UString; System_Relative_Path : in Swagger.Nullable_UString; Default_Depth : in Swagger.Nullable_Integer; Import_Behavior : in Swagger.Nullable_UString; Password_Hash_Algorithm : in Swagger.Nullable_UString; Password_Hash_Iterations : in Swagger.Nullable_Integer; Password_Salt_Size : in Swagger.Nullable_Integer; Omit_Admin_Pw : in Swagger.Nullable_Boolean; Support_Auto_Save : in Swagger.Nullable_Boolean; Password_Max_Age : in Swagger.Nullable_Integer; Initial_Password_Change : in Swagger.Nullable_Boolean; Password_History_Size : in Swagger.Nullable_Integer; Password_Expiry_For_Admin : in Swagger.Nullable_Boolean; Cache_Expiration : in Swagger.Nullable_Integer; Enable_R_F_C7613_Usercase_Mapped_Profile : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSecurityUserUserConfigurationImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Segment_Azure_Azure_Segment_Store_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Account_Name : in Swagger.Nullable_UString; Container_Name : in Swagger.Nullable_UString; Access_Key : in Swagger.Nullable_UString; Root_Path : in Swagger.Nullable_UString; Connection_U_R_L : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repository_Periodhome : in Swagger.Nullable_UString; Tarmk_Periodmode : in Swagger.Nullable_UString; Tarmk_Periodsize : in Swagger.Nullable_Integer; Segment_Cache_Periodsize : in Swagger.Nullable_Integer; String_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Cache_Periodsize : in Swagger.Nullable_Integer; String_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Node_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Pause_Compaction : in Swagger.Nullable_Boolean; Compaction_Periodretry_Count : in Swagger.Nullable_Integer; Compaction_Periodforce_Periodtimeout : in Swagger.Nullable_Integer; Compaction_Periodsize_Delta_Estimation : in Swagger.Nullable_Integer; Compaction_Perioddisable_Estimation : in Swagger.Nullable_Boolean; Compaction_Periodretained_Generations : in Swagger.Nullable_Integer; Compaction_Periodmemory_Threshold : in Swagger.Nullable_Integer; Compaction_Periodprogress_Log : in Swagger.Nullable_Integer; Standby : in Swagger.Nullable_Boolean; Custom_Blob_Store : in Swagger.Nullable_Boolean; Custom_Segment_Store : in Swagger.Nullable_Boolean; Split_Persistence : in Swagger.Nullable_Boolean; Repository_Periodbackup_Perioddir : in Swagger.Nullable_UString; Blob_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Blob_Track_Snapshot_Interval_In_Secs : in Swagger.Nullable_Integer; Role : in Swagger.Nullable_UString; Register_Descriptors : in Swagger.Nullable_Boolean; Dispatch_Changes : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Monitor_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Commits_Tracker_Writer_Groups : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repository_Periodhome : in Swagger.Nullable_UString; Tarmk_Periodmode : in Swagger.Nullable_UString; Tarmk_Periodsize : in Swagger.Nullable_Integer; Segment_Cache_Periodsize : in Swagger.Nullable_Integer; String_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Cache_Periodsize : in Swagger.Nullable_Integer; String_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Node_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Pause_Compaction : in Swagger.Nullable_Boolean; Compaction_Periodretry_Count : in Swagger.Nullable_Integer; Compaction_Periodforce_Periodtimeout : in Swagger.Nullable_Integer; Compaction_Periodsize_Delta_Estimation : in Swagger.Nullable_Integer; Compaction_Perioddisable_Estimation : in Swagger.Nullable_Boolean; Compaction_Periodretained_Generations : in Swagger.Nullable_Integer; Compaction_Periodmemory_Threshold : in Swagger.Nullable_Integer; Compaction_Periodprogress_Log : in Swagger.Nullable_Integer; Standby : in Swagger.Nullable_Boolean; Custom_Blob_Store : in Swagger.Nullable_Boolean; Custom_Segment_Store : in Swagger.Nullable_Boolean; Split_Persistence : in Swagger.Nullable_Boolean; Repository_Periodbackup_Perioddir : in Swagger.Nullable_UString; Blob_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Blob_Track_Snapshot_Interval_In_Secs : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Segment_Standby_Store_Standby_Store_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodinstaller_Periodconfiguration_Periodpersist : in Swagger.Nullable_Boolean; Mode : in Swagger.Nullable_UString; Port : in Swagger.Nullable_Integer; Primary_Periodhost : in Swagger.Nullable_UString; Interval : in Swagger.Nullable_Integer; Primary_Periodallowed_Client_Ip_Ranges : in Swagger.UString_Vectors.Vector; Secure : in Swagger.Nullable_Boolean; Standby_Periodreadtimeout : in Swagger.Nullable_Integer; Standby_Periodautoclean : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_De (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Handler_Periodname : in Swagger.Nullable_UString; User_Periodexpiration_Time : in Swagger.Nullable_UString; User_Periodauto_Membership : in Swagger.UString_Vectors.Vector; User_Periodproperty_Mapping : in Swagger.UString_Vectors.Vector; User_Periodpath_Prefix : in Swagger.Nullable_UString; User_Periodmembership_Exp_Time : in Swagger.Nullable_UString; User_Periodmembership_Nesting_Depth : in Swagger.Nullable_Integer; User_Perioddynamic_Membership : in Swagger.Nullable_Boolean; User_Perioddisable_Missing : in Swagger.Nullable_Boolean; Group_Periodexpiration_Time : in Swagger.Nullable_UString; Group_Periodauto_Membership : in Swagger.UString_Vectors.Vector; Group_Periodproperty_Mapping : in Swagger.UString_Vectors.Vector; Group_Periodpath_Prefix : in Swagger.Nullable_UString; Enable_R_F_C7613_Usercase_Mapped_Profile : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Ex (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jaas_Periodranking : in Swagger.Nullable_Integer; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Idp_Periodname : in Swagger.Nullable_UString; Sync_Periodhandler_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Pr (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Protect_External_Id : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Confi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cug_Supported_Paths : in Swagger.UString_Vectors.Vector; Cug_Enabled : in Swagger.Nullable_Boolean; Configuration_Ranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Exclu (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Principal_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_User_Action_Default_Authorizable (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled_Actions : in Swagger.Nullable_UString; User_Privilege_Names : in Swagger.UString_Vectors.Vector; Group_Privilege_Names : in Swagger.UString_Vectors.Vector; Constraint : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Vault_Packaging_Impl_Packaging_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Package_Roots : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitVaultPackagingImplPackagingImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Jackrabbit_Vault_Packaging_Registry_Impl_F_S_Package_Registry (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Home_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Auth_Core_Impl_Logout_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingAuthCoreImplLogoutServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Caconfig_Impl_Configuration_Bindings_Value_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Caconfig_Impl_Configuration_Resolver_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Config_Bucket_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigImplConfigurationResolverImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Inheritance_Stra (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Config_Property_Inheritance_Property_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Persistence_Stra (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Caconfig_Impl_Override_Osgi_Configuration_Override_Provi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Description : in Swagger.Nullable_UString; Overrides : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Caconfig_Impl_Override_System_Property_Configuration_Ove (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Caconfig_Management_Impl_Configuration_Management_Setti (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ignore_Property_Name_Regex : in Swagger.UString_Vectors.Vector; Config_Collection_Properties_Resource_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Configuration_Resour (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Config_Path : in Swagger.Nullable_UString; Fallback_Paths : in Swagger.UString_Vectors.Vector; Config_Collection_Inheritance_Property_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Context_Path_Strategy (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Config_Ref_Resource_Names : in Swagger.UString_Vectors.Vector; Config_Ref_Property_Names : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Commons_Html_Internal_Tagsoup_Html_Parser (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parser_Periodfeatures : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Commons_Log_Log_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodlevel : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodnumber : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodsize : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodpattern : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodconfiguration_File : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodpackaging_Data_Enabled : in Swagger.Nullable_Boolean; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodmax_Caller_Data_Depth : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodmax_Old_File_Count_In_Dump : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodnum_Of_Lines : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCommonsLogLogManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodlevel : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodpattern : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodnames : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodadditiv : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCommonsLogLogManagerFactoryConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Writer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodnumber : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodsize : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodbuffered : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCommonsLogLogManagerFactoryWriterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Commons_Metrics_Internal_Log_Reporter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Period : in Swagger.Nullable_Integer; Time_Unit : in Swagger.Nullable_UString; Level : in Swagger.Nullable_UString; Logger_Name : in Swagger.Nullable_UString; Prefix : in Swagger.Nullable_UString; Pattern : in Swagger.Nullable_UString; Registry_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingCommonsMetricsInternalLogReporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Commons_Metrics_Rrd4j_Impl_Codahale_Metrics_Reporter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Datasources : in Swagger.UString_Vectors.Vector; Step : in Swagger.Nullable_Integer; Archives : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Commons_Mime_Internal_Mime_Type_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mime_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Commons_Scheduler_Impl_Quartz_Scheduler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pool_Name : in Swagger.Nullable_UString; Allowed_Pool_Names : in Swagger.UString_Vectors.Vector; Scheduler_Perioduseleaderforsingle : in Swagger.Nullable_Boolean; Metrics_Periodfilters : in Swagger.UString_Vectors.Vector; Slow_Threshold_Millis : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCommonsSchedulerImplQuartzSchedulerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Commons_Scheduler_Impl_Scheduler_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodquartz_Job_Periodduration_Periodacceptable : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Commons_Threads_Impl_Default_Thread_Pool_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Min_Pool_Size : in Swagger.Nullable_Integer; Max_Pool_Size : in Swagger.Nullable_Integer; Queue_Size : in Swagger.Nullable_Integer; Max_Thread_Age : in Swagger.Nullable_Integer; Keep_Alive_Time : in Swagger.Nullable_Integer; Block_Policy : in Swagger.Nullable_UString; Shutdown_Graceful : in Swagger.Nullable_Boolean; Daemon : in Swagger.Nullable_Boolean; Shutdown_Wait_Time : in Swagger.Nullable_Integer; Priority : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Datasource_Data_Source_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Datasource_Periodname : in Swagger.Nullable_UString; Datasource_Periodsvc_Periodprop_Periodname : in Swagger.Nullable_UString; Driver_Class_Name : in Swagger.Nullable_UString; Url : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Default_Auto_Commit : in Swagger.Nullable_UString; Default_Read_Only : in Swagger.Nullable_UString; Default_Transaction_Isolation : in Swagger.Nullable_UString; Default_Catalog : in Swagger.Nullable_UString; Max_Active : in Swagger.Nullable_Integer; Max_Idle : in Swagger.Nullable_Integer; Min_Idle : in Swagger.Nullable_Integer; Initial_Size : in Swagger.Nullable_Integer; Max_Wait : in Swagger.Nullable_Integer; Max_Age : in Swagger.Nullable_Integer; Test_On_Borrow : in Swagger.Nullable_Boolean; Test_On_Return : in Swagger.Nullable_Boolean; Test_While_Idle : in Swagger.Nullable_Boolean; Validation_Query : in Swagger.Nullable_UString; Validation_Query_Timeout : in Swagger.Nullable_Integer; Time_Between_Eviction_Runs_Millis : in Swagger.Nullable_Integer; Min_Evictable_Idle_Time_Millis : in Swagger.Nullable_Integer; Connection_Properties : in Swagger.Nullable_UString; Init_S_Q_L : in Swagger.Nullable_UString; Jdbc_Interceptors : in Swagger.Nullable_UString; Validation_Interval : in Swagger.Nullable_Integer; Log_Validation_Errors : in Swagger.Nullable_Boolean; Datasource_Periodsvc_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDatasourceDataSourceFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Datasource_J_N_D_I_Data_Source_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Datasource_Periodname : in Swagger.Nullable_UString; Datasource_Periodsvc_Periodprop_Periodname : in Swagger.Nullable_UString; Datasource_Periodjndi_Periodname : in Swagger.Nullable_UString; Jndi_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDatasourceJNDIDataSourceFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Discovery_Oak_Config (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Connector_Ping_Timeout : in Swagger.Nullable_Integer; Connector_Ping_Interval : in Swagger.Nullable_Integer; Discovery_Lite_Check_Interval : in Swagger.Nullable_Integer; Cluster_Sync_Service_Timeout : in Swagger.Nullable_Integer; Cluster_Sync_Service_Interval : in Swagger.Nullable_Integer; Enable_Sync_Token : in Swagger.Nullable_Boolean; Min_Event_Delay : in Swagger.Nullable_Integer; Socket_Connect_Timeout : in Swagger.Nullable_Integer; So_Timeout : in Swagger.Nullable_Integer; Topology_Connector_Urls : in Swagger.UString_Vectors.Vector; Topology_Connector_Whitelist : in Swagger.UString_Vectors.Vector; Auto_Stop_Local_Loop_Enabled : in Swagger.Nullable_Boolean; Gzip_Connector_Requests_Enabled : in Swagger.Nullable_Boolean; Hmac_Enabled : in Swagger.Nullable_Boolean; Enable_Encryption : in Swagger.Nullable_Boolean; Shared_Key : in Swagger.Nullable_UString; Hmac_Shared_Key_T_T_L : in Swagger.Nullable_Integer; Backoff_Standby_Factor : in Swagger.Nullable_UString; Backoff_Stable_Factor : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDiscoveryOakConfigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Discovery_Oak_Synchronized_Clocks_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Forward_Distribution_Agent_Facto (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Allowed_Periodroots : in Swagger.UString_Vectors.Vector; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Package_Importer_Periodendpoints : in Swagger.UString_Vectors.Vector; Passive_Queues : in Swagger.UString_Vectors.Vector; Priority_Queues : in Swagger.UString_Vectors.Vector; Retry_Periodstrategy : in Swagger.Nullable_UString; Retry_Periodattempts : in Swagger.Nullable_Integer; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Queue_Periodprovider : in Swagger.Nullable_UString; Async_Perioddelivery : in Swagger.Nullable_Boolean; Http_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Privilege_Distribution_Request_A (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Jcr_Privilege : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Queue_Distribution_Agent_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Allowed_Periodroots : in Swagger.UString_Vectors.Vector; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Queue_Provider_Factory_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Priority_Queues : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Reverse_Distribution_Agent_Facto (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Package_Exporter_Periodendpoints : in Swagger.UString_Vectors.Vector; Pull_Perioditems : in Swagger.Nullable_Integer; Http_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Simple_Distribution_Agent_Factor (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Package_Exporter_Periodtarget : in Swagger.Nullable_UString; Package_Importer_Periodtarget : in Swagger.Nullable_UString; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Sync_Distribution_Agent_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Passive_Queues : in Swagger.UString_Vectors.Vector; Package_Exporter_Periodendpoints : in Swagger.UString_Vectors.Vector; Package_Importer_Periodendpoints : in Swagger.UString_Vectors.Vector; Retry_Periodstrategy : in Swagger.Nullable_UString; Retry_Periodattempts : in Swagger.Nullable_Integer; Pull_Perioditems : in Swagger.Nullable_Integer; Http_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Monitor_Distribution_Queue_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Number_Of_Retries_Allowed : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Agent_Distributio (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Queue : in Swagger.Nullable_UString; Drop_Periodinvalid_Perioditems : in Swagger.Nullable_Boolean; Agent_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplExporterAgentDistributioInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Local_Distributio (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplExporterLocalDistributioInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Remote_Distributi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Endpoints : in Swagger.UString_Vectors.Vector; Pull_Perioditems : in Swagger.Nullable_Integer; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Local_Distributio (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplImporterLocalDistributioInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Remote_Distributi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Endpoints : in Swagger.UString_Vectors.Vector; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Repository_Distri (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Service_Periodname : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Privilege_Periodname : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Kind : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionResourcesImplDistributionConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Service_Resour (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Kind : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionResourcesImplDistributionServiceResourInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Serialization_Impl_Distribution_Package_Bu (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; P_Type : in Swagger.Nullable_UString; Format_Periodtarget : in Swagger.Nullable_UString; Temp_Fs_Folder : in Swagger.Nullable_UString; File_Threshold : in Swagger.Nullable_Integer; Memory_Unit : in Swagger.Nullable_UString; Use_Off_Heap_Memory : in Swagger.Nullable_Boolean; Digest_Algorithm : in Swagger.Nullable_UString; Monitoring_Queue_Size : in Swagger.Nullable_Integer; Cleanup_Delay : in Swagger.Nullable_Integer; Package_Periodfilters : in Swagger.UString_Vectors.Vector; Property_Periodfilters : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDistributionSerializationImplDistributionPackageBuInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Serialization_Impl_Vlt_Vault_Distribution (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; P_Type : in Swagger.Nullable_UString; Import_Mode : in Swagger.Nullable_UString; Acl_Handling : in Swagger.Nullable_UString; Package_Periodroots : in Swagger.Nullable_UString; Package_Periodfilters : in Swagger.UString_Vectors.Vector; Property_Periodfilters : in Swagger.UString_Vectors.Vector; Temp_Fs_Folder : in Swagger.Nullable_UString; Use_Binary_References : in Swagger.Nullable_Boolean; Auto_Save_Threshold : in Swagger.Nullable_Integer; Cleanup_Delay : in Swagger.Nullable_Integer; File_Threshold : in Swagger.Nullable_Integer; M_E_G_A_B_Y_T_E_S : in Swagger.Nullable_UString; Use_Off_Heap_Memory : in Swagger.Nullable_Boolean; Digest_Algorithm : in Swagger.Nullable_UString; Monitoring_Queue_Size : in Swagger.Nullable_Integer; Paths_Mapping : in Swagger.UString_Vectors.Vector; Strict_Import : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingDistributionSerializationImplVltVaultDistributionInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Transport_Impl_User_Credentials_Distributi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTransportImplUserCredentialsDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Distribution_Event_Distribute (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplDistributionEventDistributeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Jcr_Event_Distribution_Trigger (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Ignored_Paths_Patterns : in Swagger.UString_Vectors.Vector; Service_Name : in Swagger.Nullable_UString; Deep : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Persisted_Jcr_Event_Distributi (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Nuggets_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Remote_Event_Distribution_Trig (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Endpoint : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Resource_Event_Distribution_Tr (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Scheduled_Distribution_Trigge (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Seconds : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Engine_Impl_Auth_Sling_Authenticator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodlistener : in Swagger.Nullable_UString; Auth_Periodsudo_Periodcookie : in Swagger.Nullable_UString; Auth_Periodsudo_Periodparameter : in Swagger.Nullable_UString; Auth_Periodannonymous : in Swagger.Nullable_Boolean; Sling_Periodauth_Periodrequirements : in Swagger.UString_Vectors.Vector; Sling_Periodauth_Periodanonymous_Perioduser : in Swagger.Nullable_UString; Sling_Periodauth_Periodanonymous_Periodpassword : in Swagger.Nullable_UString; Auth_Periodhttp : in Swagger.Nullable_UString; Auth_Periodhttp_Periodrealm : in Swagger.Nullable_UString; Auth_Perioduri_Periodsuffix : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingEngineImplAuthSlingAuthenticatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Engine_Impl_Debug_Request_Progress_Tracker_Log_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extensions : in Swagger.UString_Vectors.Vector; Min_Duration_Ms : in Swagger.Nullable_Integer; Max_Duration_Ms : in Swagger.Nullable_Integer; Compact_Log_Format : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Engine_Impl_Log_Request_Logger (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Request_Periodlog_Periodoutput : in Swagger.Nullable_UString; Request_Periodlog_Periodoutputtype : in Swagger.Nullable_Integer; Request_Periodlog_Periodenabled : in Swagger.Nullable_Boolean; Access_Periodlog_Periodoutput : in Swagger.Nullable_UString; Access_Periodlog_Periodoutputtype : in Swagger.Nullable_Integer; Access_Periodlog_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineImplLogRequestLoggerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Engine_Impl_Log_Request_Logger_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Request_Periodlog_Periodservice_Periodformat : in Swagger.Nullable_UString; Request_Periodlog_Periodservice_Periodoutput : in Swagger.Nullable_UString; Request_Periodlog_Periodservice_Periodoutputtype : in Swagger.Nullable_Integer; Request_Periodlog_Periodservice_Periodonentry : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineImplLogRequestLoggerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Engine_Impl_Sling_Main_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodmax_Periodcalls : in Swagger.Nullable_Integer; Sling_Periodmax_Periodinclusions : in Swagger.Nullable_Integer; Sling_Periodtrace_Periodallow : in Swagger.Nullable_Boolean; Sling_Periodmax_Periodrecord_Periodrequests : in Swagger.Nullable_Integer; Sling_Periodstore_Periodpattern_Periodrequests : in Swagger.UString_Vectors.Vector; Sling_Periodserverinfo : in Swagger.Nullable_UString; Sling_Periodadditional_Periodresponse_Periodheaders : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingEngineImplSlingMainServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Engine_Parameters (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Perioddefault_Periodparameter_Periodencoding : in Swagger.Nullable_UString; Sling_Perioddefault_Periodmax_Periodparameters : in Swagger.Nullable_Integer; File_Periodlocation : in Swagger.Nullable_UString; File_Periodthreshold : in Swagger.Nullable_Integer; File_Periodmax : in Swagger.Nullable_Integer; Request_Periodmax : in Swagger.Nullable_Integer; Sling_Perioddefault_Periodparameter_Periodcheck_For_Additional_Container_Parameters : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineParametersInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Event_Impl_Eventing_Thread_Pool (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Min_Pool_Size : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventImplEventingThreadPoolInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Event_Impl_Jobs_Default_Job_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Queue_Periodpriority : in Swagger.Nullable_UString; Queue_Periodretries : in Swagger.Nullable_Integer; Queue_Periodretrydelay : in Swagger.Nullable_Integer; Queue_Periodmaxparallel : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventImplJobsDefaultJobManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Event_Impl_Jobs_Jcr_Persistence_Handler (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodconsumermanager_Perioddisable_Distribution : in Swagger.Nullable_Boolean; Startup_Perioddelay : in Swagger.Nullable_Integer; Cleanup_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventImplJobsJcrPersistenceHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Event_Impl_Jobs_Job_Consumer_Manager (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodinstaller_Periodconfiguration_Periodpersist : in Swagger.Nullable_Boolean; Job_Periodconsumermanager_Periodwhitelist : in Swagger.UString_Vectors.Vector; Job_Periodconsumermanager_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingEventImplJobsJobConsumerManagerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Event_Jobs_Queue_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Queue_Periodname : in Swagger.Nullable_UString; Queue_Periodtopics : in Swagger.UString_Vectors.Vector; Queue_Periodtype : in Swagger.Nullable_UString; Queue_Periodpriority : in Swagger.Nullable_UString; Queue_Periodretries : in Swagger.Nullable_Integer; Queue_Periodretrydelay : in Swagger.Nullable_Integer; Queue_Periodmaxparallel : in Swagger.Number; Queue_Periodkeep_Jobs : in Swagger.Nullable_Boolean; Queue_Periodprefer_Run_On_Creation_Instance : in Swagger.Nullable_Boolean; Queue_Periodthread_Pool_Size : in Swagger.Nullable_Integer; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventJobsQueueConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Extensions_Webconsolesecurityprovider_Internal_Sling_W (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Users : in Swagger.UString_Vectors.Vector; Groups : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Featureflags_Feature (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Description : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingFeatureflagsFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Featureflags_Impl_Configured_Feature (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Description : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingFeatureflagsImplConfiguredFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Hapi_Impl_H_Api_Util_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodresourcetype : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodcollectionresourcetype : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodsearchpaths : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodexternalurl : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingHapiImplHApiUtilImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Hc_Core_Impl_Composite_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Filter_Periodtags : in Swagger.UString_Vectors.Vector; Filter_Periodcombine_Tags_With_Or : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingHcCoreImplCompositeHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Hc_Core_Impl_Executor_Health_Check_Executor_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Timeout_In_Ms : in Swagger.Nullable_Integer; Long_Running_Future_Threshold_For_Critical_Ms : in Swagger.Nullable_Integer; Result_Cache_Ttl_In_Ms : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Hc_Core_Impl_Jmx_Attribute_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Mbean_Periodname : in Swagger.Nullable_UString; Attribute_Periodname : in Swagger.Nullable_UString; Attribute_Periodvalue_Periodconstraint : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingHcCoreImplJmxAttributeHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Hc_Core_Impl_Scriptable_Health_Check (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Expression : in Swagger.Nullable_UString; Language_Periodextension : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingHcCoreImplScriptableHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Hc_Core_Impl_Servlet_Health_Check_Executor_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Servlet_Path : in Swagger.Nullable_UString; Disabled : in Swagger.Nullable_Boolean; Cors_Periodaccess_Control_Allow_Origin : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Hc_Core_Impl_Servlet_Result_Txt_Verbose_Serializer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Total_Width : in Swagger.Nullable_Integer; Col_Width_Name : in Swagger.Nullable_Integer; Col_Width_Result : in Swagger.Nullable_Integer; Col_Width_Timing : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_I18n_Impl_I18_N_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Sling_Periodfilter_Periodscope : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingI18nImplI18NFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_I18n_Impl_Jcr_Resource_Bundle_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Locale_Perioddefault : in Swagger.Nullable_UString; Preload_Periodbundles : in Swagger.Nullable_Boolean; Invalidation_Perioddelay : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingI18nImplJcrResourceBundleProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Installer_Provider_Jcr_Impl_Jcr_Installer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Handler_Periodschemes : in Swagger.UString_Vectors.Vector; Sling_Periodjcrinstall_Periodfolder_Periodname_Periodregexp : in Swagger.Nullable_UString; Sling_Periodjcrinstall_Periodfolder_Periodmax_Perioddepth : in Swagger.Nullable_Integer; Sling_Periodjcrinstall_Periodsearch_Periodpath : in Swagger.UString_Vectors.Vector; Sling_Periodjcrinstall_Periodnew_Periodconfig_Periodpath : in Swagger.Nullable_UString; Sling_Periodjcrinstall_Periodsignal_Periodpath : in Swagger.Nullable_UString; Sling_Periodjcrinstall_Periodenable_Periodwriteback : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingInstallerProviderJcrImplJcrInstallerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Whitelist_Periodbypass : in Swagger.Nullable_Boolean; Whitelist_Periodbundles_Periodregexp : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrBaseInternalLoginAdminWhitelistInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist_Fragment (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Whitelist_Periodname : in Swagger.Nullable_UString; Whitelist_Periodbundles : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Davex_Impl_Servlets_Sling_Dav_Ex_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Alias : in Swagger.Nullable_UString; Dav_Periodcreate_Absolute_Uri : in Swagger.Nullable_Boolean; Dav_Periodprotectedhandlers : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrDavexImplServletsSlingDavExServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Jackrabbit_Server_Jndi_Registration_Support (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Java_Periodnaming_Periodfactory_Periodinitial : in Swagger.Nullable_UString; Java_Periodnaming_Periodprovider_Periodurl : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Jackrabbit_Server_Rmi_Registration_Support (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Port : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Repoinit_Impl_Repository_Initializer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; References : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingJcrRepoinitImplRepositoryInitializerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Repoinit_Repository_Initializer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; References : in Swagger.UString_Vectors.Vector; Scripts : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingJcrRepoinitRepositoryInitializerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Resource_Internal_Jcr_Resource_Resolver_Factory_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodsearchpath : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodmanglenamespaces : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodallow_Direct : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodrequired_Periodproviders : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodrequired_Periodprovidernames : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodvirtual : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodmapping : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodmap_Periodlocation : in Swagger.Nullable_UString; Resource_Periodresolver_Periodmap_Periodobservation : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Perioddefault_Periodvanity_Periodredirect_Periodstatus : in Swagger.Nullable_Integer; Resource_Periodresolver_Periodenable_Periodvanitypath : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodvanitypath_Periodmax_Entries : in Swagger.Nullable_Integer; Resource_Periodresolver_Periodvanitypath_Periodmax_Entries_Periodstartup : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodvanitypath_Periodbloomfilter_Periodmax_Bytes : in Swagger.Nullable_Integer; Resource_Periodresolver_Periodoptimize_Periodalias_Periodresolution : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodvanitypath_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodvanitypath_Periodblacklist : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodvanity_Periodprecedence : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodproviderhandling_Periodparanoid : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodlog_Periodclosing : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodlog_Periodunclosed : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Resource_Internal_Jcr_System_User_Validator (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Allow_Periodonly_Periodsystem_Perioduser : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Resourcesecurity_Impl_Resource_Access_Gate_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Checkpath_Periodprefix : in Swagger.Nullable_UString; Jcr_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Default_Handler_Service (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Type_Periodcollections : in Swagger.Nullable_UString; Type_Periodnoncollections : in Swagger.Nullable_UString; Type_Periodcontent : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Dir_Listing_Export_Handler_Servic (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Servlets_Simple_Web_Dav_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dav_Periodroot : in Swagger.Nullable_UString; Dav_Periodcreate_Absolute_Uri : in Swagger.Nullable_Boolean; Dav_Periodrealm : in Swagger.Nullable_UString; Collection_Periodtypes : in Swagger.UString_Vectors.Vector; Filter_Periodprefixes : in Swagger.UString_Vectors.Vector; Filter_Periodtypes : in Swagger.Nullable_UString; Filter_Perioduris : in Swagger.Nullable_UString; Type_Periodcollections : in Swagger.Nullable_UString; Type_Periodnoncollections : in Swagger.Nullable_UString; Type_Periodcontent : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Jmx_Provider_Impl_J_M_X_Resource_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJmxProviderImplJMXResourceProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Models_Impl_Model_Adapter_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodlistener : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Max_Periodrecursion_Perioddepth : in Swagger.Nullable_Integer; Cleanup_Periodjob_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingModelsImplModelAdapterFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Models_Jacksonexporter_Impl_Resource_Module_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodrecursion_Periodlevels : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Resource_Inventory_Impl_Resource_Inventory_Printer_Facto (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Felix_Periodinventory_Periodprinter_Periodname : in Swagger.Nullable_UString; Felix_Periodinventory_Periodprinter_Periodtitle : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Resourcemerger_Impl_Merged_Resource_Provider_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Merge_Periodroot : in Swagger.Nullable_UString; Merge_Periodread_Only : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Resourcemerger_Picker_Overriding (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Merge_Periodroot : in Swagger.Nullable_UString; Merge_Periodread_Only : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingResourcemergerPickerOverridingInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Scripting_Core_Impl_Script_Cache_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodscripting_Periodcache_Periodsize : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodscripting_Periodcache_Periodadditional_Extensions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingScriptingCoreImplScriptCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Scripting_Core_Impl_Scripting_Resource_Resolver_Provider (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Log_Periodstacktrace_Periodonclose : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Scripting_Java_Impl_Java_Script_Engine_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Java_Periodclassdebuginfo : in Swagger.Nullable_Boolean; Java_Periodjava_Encoding : in Swagger.Nullable_UString; Java_Periodcompiler_Source_V_M : in Swagger.Nullable_UString; Java_Periodcompiler_Target_V_M : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Scripting_Javascript_Internal_Rhino_Java_Script_Engine_Fa (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodscripting_Periodjavascript_Periodrhino_Periodopt_Level : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Scripting_Jsp_Jsp_Script_Engine_Factory (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jasper_Periodcompiler_Target_V_M : in Swagger.Nullable_UString; Jasper_Periodcompiler_Source_V_M : in Swagger.Nullable_UString; Jasper_Periodclassdebuginfo : in Swagger.Nullable_Boolean; Jasper_Periodenable_Pooling : in Swagger.Nullable_Boolean; Jasper_Periodie_Class_Id : in Swagger.Nullable_UString; Jasper_Periodgen_String_As_Char_Array : in Swagger.Nullable_Boolean; Jasper_Periodkeepgenerated : in Swagger.Nullable_Boolean; Jasper_Periodmappedfile : in Swagger.Nullable_Boolean; Jasper_Periodtrim_Spaces : in Swagger.Nullable_Boolean; Jasper_Perioddisplay_Source_Fragments : in Swagger.Nullable_Boolean; Default_Periodis_Periodsession : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingScriptingJspJspScriptEngineFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Scripting_Sightly_Js_Impl_Jsapi_Sly_Bindings_Values_Prov (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodscripting_Periodsightly_Periodjs_Periodbindings : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Security_Impl_Content_Disposition_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodcontent_Perioddisposition_Periodpaths : in Swagger.UString_Vectors.Vector; Sling_Periodcontent_Perioddisposition_Periodexcluded_Periodpaths : in Swagger.UString_Vectors.Vector; Sling_Periodcontent_Perioddisposition_Periodall_Periodpaths : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingSecurityImplContentDispositionFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Security_Impl_Referrer_Filter (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Allow_Periodempty : in Swagger.Nullable_Boolean; Allow_Periodhosts : in Swagger.UString_Vectors.Vector; Allow_Periodhosts_Periodregexp : in Swagger.UString_Vectors.Vector; Filter_Periodmethods : in Swagger.UString_Vectors.Vector; Exclude_Periodagents_Periodregexp : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingSecurityImplReferrerFilterInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; User_Periodmapping : in Swagger.UString_Vectors.Vector; User_Perioddefault : in Swagger.Nullable_UString; User_Periodenable_Perioddefault_Periodmapping : in Swagger.Nullable_Boolean; Require_Periodvalidation : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingServiceusermappingImplServiceUserMapperImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl_Amended (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; User_Periodmapping : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Servlets_Get_Default_Get_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Aliases : in Swagger.UString_Vectors.Vector; Index : in Swagger.Nullable_Boolean; Index_Periodfiles : in Swagger.UString_Vectors.Vector; Enable_Periodhtml : in Swagger.Nullable_Boolean; Enable_Periodjson : in Swagger.Nullable_Boolean; Enable_Periodtxt : in Swagger.Nullable_Boolean; Enable_Periodxml : in Swagger.Nullable_Boolean; Json_Periodmaximumresults : in Swagger.Nullable_Integer; Ecma_Suport : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingServletsGetDefaultGetServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Servlets_Get_Impl_Version_Version_Info_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.UString_Vectors.Vector; Ecma_Suport : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingServletsGetImplVersionVersionInfoServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Servlets_Post_Impl_Helper_Chunk_Clean_Up_Task (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Chunk_Periodcleanup_Periodage : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Servlets_Post_Impl_Sling_Post_Servlet (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Servlet_Periodpost_Perioddate_Formats : in Swagger.UString_Vectors.Vector; Servlet_Periodpost_Periodnode_Name_Hints : in Swagger.UString_Vectors.Vector; Servlet_Periodpost_Periodnode_Name_Max_Length : in Swagger.Nullable_Integer; Servlet_Periodpost_Periodcheckin_New_Versionable_Nodes : in Swagger.Nullable_Boolean; Servlet_Periodpost_Periodauto_Checkout : in Swagger.Nullable_Boolean; Servlet_Periodpost_Periodauto_Checkin : in Swagger.Nullable_Boolean; Servlet_Periodpost_Periodignore_Pattern : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingServletsPostImplSlingPostServletInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Servlets_Resolver_Sling_Servlet_Resolver (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Servletresolver_Periodservlet_Root : in Swagger.Nullable_UString; Servletresolver_Periodcache_Size : in Swagger.Nullable_Integer; Servletresolver_Periodpaths : in Swagger.UString_Vectors.Vector; Servletresolver_Perioddefault_Extensions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingServletsResolverSlingServletResolverInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Settings_Impl_Sling_Settings_Service_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodname : in Swagger.Nullable_UString; Sling_Perioddescription : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingSettingsImplSlingSettingsServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Startupfilter_Impl_Startup_Filter_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Active_Periodby_Perioddefault : in Swagger.Nullable_Boolean; Default_Periodmessage : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingStartupfilterImplStartupFilterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Tenant_Internal_Tenant_Provider_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Tenant_Periodroot : in Swagger.Nullable_UString; Tenant_Periodpath_Periodmatcher : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingTenantInternalTenantProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Tracer_Internal_Log_Tracer (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Tracer_Sets : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Servlet_Enabled : in Swagger.Nullable_Boolean; Recording_Cache_Size_In_M_B : in Swagger.Nullable_Integer; Recording_Cache_Duration_In_Secs : in Swagger.Nullable_Integer; Recording_Compression_Enabled : in Swagger.Nullable_Boolean; Gzip_Response : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingTracerInternalLogTracerInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- procedure Org_Apache_Sling_Xss_Impl_X_S_S_Filter_Impl (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Policy_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingXssImplXSSFilterImplInfo_Type; Context : in out Swagger.Servers.Context_Type) is abstract; generic type Implementation_Type is limited new Server_Type with private; package Skeleton is procedure Register (Server : in out Swagger.Servers.Application_Type'Class); -- procedure Adaptive_Form_And_Interactive_Communication_Web_Channel_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Adaptive_Form_And_Interactive_Communication_Web_Channel_Theme_Configur (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Analytics_Component_Query_Cache_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Apache_Sling_Health_Check_Result_H_T_M_L_Serializer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Formsndocuments_Config_A_E_M_Forms_Manager_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Transaction_Core_Impl_Transaction_Recorder (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Deprecate_Indexes_H_C (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Replication_Agents_Disabled_H_C (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Mbean_Impl_Pre_Upgrade_Tasks_M_Bean_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Tasks_Impl_Consistency_Check_Task_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Account_Api_Account_Management_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Account_Impl_Account_Management_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Address_Impl_Location_Location_List_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Audit_Purge_Dam (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Audit_Purge_Pages (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Audit_Purge_Replication (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_A_W_S_Cloud_Front_Rewriter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Config_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Rewriter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cloudconfig_Core_Impl_Configuration_Replication_Event_Handle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Dynamic_Image_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Product_Asset_Handler_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Static_Image_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Video_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Promotion_Promotion_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Cataloggenerator_Catalog_Generator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Page_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Productfeed_Product_Feed_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Contentinsight_Impl_Reporting_Services_Settings_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Contentinsight_Impl_Servlets_Bright_Edge_Proxy_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Contentinsight_Impl_Servlets_Reporting_Services_Proxy_Servle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Component_Component_Config_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Conf_Feature_Config_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Asset_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Par_Range_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Payload_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Dm_Process_Image_P_Tiff_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Ips_Impl_Replication_Trigger_Replicate_On_Modify_Worker (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Mac_Sync_Helper_Impl_M_A_C_Sync_Client_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Mac_Sync_Impl_D_A_M_Sync_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Processor_Nui_Impl_Nui_Asset_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_S7imaging_Impl_Is_Image_Server_Component (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_S7imaging_Impl_Ps_Platform_Server_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Asset_I_O_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Dam_Webdav_Version_Linking_Job (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Special_Files_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Deserfw_Impl_Deserialization_Firewall_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dtm_Impl_Service_D_T_M_Web_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dtm_Impl_Servlets_D_T_M_Deploy_Hook_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dtm_Reactor_Impl_Service_Web_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Experiencelog_Impl_Experience_Log_Config_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Hc_Content_Packages_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_History_Impl_History_Request_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_History_Impl_History_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Inbox_Impl_Typeprovider_Item_Type_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Projects_Impl_Servlet_Project_Image_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Projects_Purge_Scheduler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Scheduled_Exporter_Impl_Scheduled_Exporter_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Analytics_Impl_Screens_Analytics_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Device_Impl_Device_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Device_Registration_Impl_Registration_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Handler_Channels_Update_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Jobs_Distributed_Devices_Stati_Update_Job (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Remote_Impl_Distributed_Http_Client_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Screens_Channel_Post_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Mq_Activemq_Impl_Artemis_J_M_S_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Offlinecontent_Impl_Bulk_Offline_Update_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Offlinecontent_Impl_Offline_Content_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Segmentation_Impl_Segmentation_Feature_Flag (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Bundles_Impl_Html_Library_Manager_Config_Health_Ch (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Bundles_Impl_Wcm_Filter_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Dispatcher_Impl_Dispatcher_Access_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Packages_Impl_Example_Content_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Webserver_Impl_Clickjacking_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Accountverification_Impl_Account_Management_Config_Im (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Stream_Co (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Event_Listener_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Moderation_Event_Exten (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Rating_Event_Activity_S (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Resource_Activity_Stre (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Calendar_Client_Endpoints_Impl_Calendar_Operations_I (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Calendar_Client_Operationextensions_Event_Attachmen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Calendar_Servlets_Time_Zone_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Delete_Event (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Operation_Se (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Translation_Operati (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Listing_Impl_Search_Comment_Social_C (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Scheduler_Impl_Search_Scheduled_Pos (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Cors_C_O_R_S_Authentication_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Android_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Builder_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Custom_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Quoted_Text_Patterns_Imp (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Configuration_Imp (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Importer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Gmail_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_I_O_S_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Macmail_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Out_Look_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Unknown_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Yahoo_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Maintainance_Impl_Delete_Temp_U_G_C_Image_Upload (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Ugclimiter_Impl_U_G_C_Limiter_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Ugclimitsconfig_Impl_Community_User_U_G_C_Limit (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Facebook_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_Authentication_Handle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_User_Profile_Mapper (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Twitter_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Content_Fragments_Services_Impl_Communities_Fragmen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Datastore_As_Impl_A_S_Resource_Provider_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Datastore_Op_Impl_Social_M_S_Resource_Provider_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Datastore_Rdb_Impl_Social_R_D_B_Resource_Provider_Factor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Learning_Path_Adaptor_F (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Resource_Adaptor_Facto (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Learningpath_Endpoints_Impl_Enablement_L (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Resource_Endpoints_Impl_Enablement_Resou (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Services_Impl_Author_Marker_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Filelibrary_Download_Ge (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Impl_File_Library_Opera (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Forum_Client_Endpoints_Impl_Forum_Operations_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Forum_Dispatcher_Impl_Flush_Operations (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Group_Client_Impl_Community_Group_Collection_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Group_Impl_Group_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Handlebars_Guava_Template_Cache_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ideation_Client_Endpoints_Impl_Ideation_Operations_S (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Journal_Client_Endpoints_Impl_Journal_Operations_Ser (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_Group_Profile (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_User_Profile_O (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Members_Impl_Community_Member_Group_Profile_Component_F (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Messaging_Client_Endpoints_Impl_Messaging_Operation (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Filter_Group_Social_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Moderation_Dashboard_Social (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_User_Details_Social_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Internal_Impl_Filter_Group_Soci (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Mentions_Router (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Notification_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Notifications_Router (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Qna_Client_Endpoints_Impl_Qna_Forum_Operations_Servic (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_I (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_M (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Site_Trend_Report_S (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Review_Client_Endpoints_Impl_Review_Operations_Servi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Scf_Core_Operations_Impl_Social_Operations_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Scf_Endpoints_Impl_Default_Social_Get_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Scoring_Impl_Scoring_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Serviceusers_Internal_Impl_Service_User_Wrapper_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Site_Endpoints_Impl_Site_Operation_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Site_Impl_Analytics_Component_Configuration_Service_Im (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Site_Impl_Site_Configurator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Srp_Impl_Social_Solr_Connector (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_Diff_Changes_Observer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_Group_Sync_Listener_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_Publisher_Sync_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_User_Sync_Listener_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Translation_Impl_Translation_Service_Config_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Translation_Impl_U_G_C_Language_Detector (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Dispatcher_Impl_Flush_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Aysnc_Reverse_Replicator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Publisher_Configuration_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Social_Utils_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Auto_Moderation_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Sentiment_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Default_Attachment_Type_Blackli (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Safer_Sling_Post_Validator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_User_Endpoints_Impl_Users_Group_From_Publish_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_User_Impl_Transport_Http_To_Publisher (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Ui_Wcm_Commons_Internal_Servlets_Rte_R_T_E_Filter_Servlet_Fact (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Content_Cleanup (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Install_Folder_Cleanup (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Delete_Config_Provider_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Job_Clean_Up_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Move_Config_Provider_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Page_Move_Config_Provider_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Launches_Impl_Launches_Event_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Mobile_Qrcode_Servlet_Q_R_Code_Image_Generator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Style_Internal_Component_Style_Info_Cache_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Translation_Impl_Translation_Platform_Configuration_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Fd_Fp_Config_Forms_Portal_Draftsand_Submission_Config_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Fd_Fp_Config_Forms_Portal_Scheduler_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Forms_Common_Service_Impl_Default_Data_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Forms_Common_Service_Impl_Forms_Common_Configuration_Service_Imp (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Forms_Common_Servlet_Temp_Clean_Up_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Acp_Platform_Platform_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Activitystreams_Impl_Activity_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Analyzer_Base_System_Status_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Analyzer_Scripts_Compile_All_Scripts_Compiler_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Apicontroller_Filter_Resolver_Hook_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Cert_Impl_Client_Cert_Auth_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_External_User_Id_Mapping_Provider_Extension (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Access_Token_Request_Customizer_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Instance_Credentials_Validator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_Ims_Config_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Accesstoken_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Bearer_Authentication_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Default_Token_Validator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Facebook_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Github_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Granite_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager_Internal (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_O_Auth_Authentication_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Twitter_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Requirement_Impl_Default_Requirement_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Saml_Saml_Authentication_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Sso_Impl_Sso_Authentication_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Code_Cache_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Crxde_Support_Bundle_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Dav_Ex_Bundle_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Inactive_Bundles_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Jobs_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Get_Servlet_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Java_Script_Handler_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Jsp_Script_Handler_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Referrer_Filter_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Web_Dav_Bundle_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Comments_Internal_Comment_Replication_Content_Filter_Fac (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Compatrouter_Impl_Compat_Switching_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Compatrouter_Impl_Routing_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Compatrouter_Impl_Switch_Mapping_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Conf_Impl_Runtime_Aware_Configuration_Resource_Resolving (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Contexthub_Impl_Context_Hub_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Cors_Impl_C_O_R_S_Policy_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Crypto_Distribution_Transport_Se (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Changes_Observer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Distribution_To_Replication_Even (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Replication_Adapters_Replicat (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Replication_Distribution_Trans (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Transport_Access_Token_Distribu (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Frags_Impl_Check_Http_Header_Flag (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Frags_Impl_Random_Feature (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Httpcache_File_File_Cache_Store (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Httpcache_Impl_Outer_Cache_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_I18n_Impl_Bundle_Pseudo_Translations (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_I18n_Impl_Preferences_Locale_Resolver_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Infocollector_Info_Collector (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Jetty_Ssl_Internal_Granite_Ssl_Connector_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_License_Impl_License_Check_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Logging_Impl_Log_Analyser_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Logging_Impl_Log_Error_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Data_Store_Garbage_Collection_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Lucene_Binaries_Cleanup_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Revision_Cleanup_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Monitoring_Impl_Script_Config_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Auth_Impl_O_Auth2_Server_Authentication_Han (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_Access_Token_Cleanup_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Client_Revocation_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Revocation_Endpoint_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Endpoint_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Revocation_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Configurator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Cloner (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Offloader (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Agent_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Default_Transpo (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Omnisearch_Impl_Core_Omni_Search_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Optout_Impl_Opt_Out_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Async_Index_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Large_Index_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Queries_Status_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Query_Health_Check_Metrics (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Query_Limits_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Replication_Hc_Impl_Replication_Queue_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Replication_Hc_Impl_Replication_Transport_Users_Health_C (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Authorizable_Node_Name_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Content_Sling_Sling_Content_Health_C (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Continuous_R_G_C_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Default_Access_User_Profile_Health_Che (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Default_Logins_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Disk_Space_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Observation_Queue_Length_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Impl_Commit_Stats_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Service_User_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Requests_Logging_Impl_Hc_Requests_Status_Health_Check_Im (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Resourcestatus_Impl_Composite_Status_Type (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Resourcestatus_Impl_Status_Resource_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Rest_Assets_Impl_Asset_Content_Disposition_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Rest_Impl_Api_Endpoint_Resource_Provider_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Rest_Impl_Servlet_Default_G_E_T_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Security_User_Ui_Internal_Servlets_S_S_L_Configuration_S (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Security_User_User_Properties_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Socialgraph_Impl_Social_Graph_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_System_Monitoring_Impl_System_Stats_M_Bean_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Adapter_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Archive_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Purge_Task_Purge_Maintenance_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Service_Task_Manager_Adapter_Factor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Threaddump_Thread_Dump_Collector (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Translation_Connector_Msft_Core_Impl_Microsoft_Transl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Translation_Core_Impl_Translation_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Ui_Clientlibs_Impl_Html_Library_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Console_Frags_Workflow_Withdraw_Feature (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Console_Publish_Workflow_Publish_Event_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Jcr_Workflow_Bucket_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Job_External_Process_Job_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Job_Job_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Offloading_Workflow_Offloading_Job_Consum (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Payload_Map_Cache (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Payloadmap_Payload_Move_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Workflow_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Workflow_Session_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Purge_Scheduler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Octopus_Ncomm_Bootstrap (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Social_Integrations_Livefyre_User_Pingforpull_Impl_Ping_Pull_S (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Xmp_Worker_Files_Ncomm_X_M_P_Files_N_Comm (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Commons_Datasource_Jdbcpool_Jdbc_Pool_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Commons_Httpclient (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Impl_Store_Properties_Change_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Exporter_Classifications_Exporte (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Importer_Report_Importer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Adapter_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Http_Client_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Account_Options_Updater (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Delete_Author_Activity_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Push_Author_Campaign_Page_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Segment_Importer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Service_Web_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Servlets_Admin_Server_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Testandtarget_Http_Client_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Auth_Impl_Cug_Cug_Support_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Auth_Impl_Login_Selector_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Commons_Impl_Externalizer_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Commons_Servlets_Root_Mapping_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Code_Upgrade_Execution_Condition_Checke (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Upgrade_Task_Ignore_List (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Version_Range_Task_Ignorelist (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Contentsync_Impl_Content_Sync_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Commons_Handler_Standard_Image_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Commons_Metadata_Xmp_Filter_Black_White (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Commons_Util_Impl_Asset_Cache_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Annotation_Pdf_Annotation_Pdf_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Asset_Move_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Assethome_Asset_Home_Page_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Assetlinkshare_Adhoc_Asset_Share_Proxy_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Cache_C_Q_Buffered_Image_Cache (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Change_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Event_Purge_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Event_Recorder_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Event_Dam_Event_Audit_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Expiry_Notification_Job_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Foldermetadataschema_Folder_Metadata_Schema_Feat (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Gfx_Commons_Gfx_Renderer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_E_P_S_Format_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Indesign_Format_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Jpeg_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Xmp_N_Comm_X_M_P_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Index_Update_Monitor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Migration_M_Bean_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Update_Monitor_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataexport_Async_Metadata_Export_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataimport_Async_Metadata_Import_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Lightbox_Lightbox_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Metadata_Editor_Select_Component_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Mime_Type_Asset_Upload_Restriction_Helper (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Mime_Type_Dam_Mime_Type_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Missing_Metadata_Notification_Job (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Process_Send_Transient_Workflow_Completed_Email_Pr (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Process_Text_Extraction_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Rendition_Maker_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Reports_Report_Export_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Reports_Report_Purge_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Download_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Status_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_X_M_P_Search_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Batch_Metadata_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Binary_Provider_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Collection_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Collections_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Companion_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Create_Asset_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Dam_Content_Disposition_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Guid_Lookup_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Health_Check_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Metadata_Get_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Multiple_License_Accept_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Resource_Collection_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Ui_Preview_Folder_Preview_Updater_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Unzip_Unzip_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Process_Exif_Tool_Extract_Metadata_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Process_Extract_Metadata_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Process_Metadata_Processor_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Ffmpeg_Locator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Gibson_Fontmanager_Impl_Font_Manager_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Standard_Pdf_Pdf_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Standard_Ps_Post_Script_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Standard_Psd_Psd_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Ids_Impl_I_D_S_Job_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Ids_Impl_I_D_S_Pool_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Indd_Impl_Handler_Indesign_X_M_P_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Indd_Impl_Servlet_Snippet_Creation_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Indd_Process_I_N_D_D_Media_Extract_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Data_Handler_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Report_Sync_Job (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Pim_Impl_Sourcing_Upload_Process_Product_Assets_Upload_Pro (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_S7dam_Dynamic_Media_Config_Even (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_Site_Catalyst_Report_Runner (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Create_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Modify_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Process_Video_Thumbnail_Download_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_S7dam_Dam_Change_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Servlets_S7dam_Product_Info_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Video_Impl_Video_Proxy_Client_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_A_P_I_Client_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Asset_Mime_Type_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Configuration_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Dam_Change_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Flash_Templates_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Upload_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Stock_Integration_Impl_Cache_Stock_Cache_Configuration_Ser (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Stock_Integration_Impl_Configuration_Stock_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Video_Impl_Servlet_Video_Test_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Extwidget_Servlets_Image_Sprite_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Image_Internal_Font_Font_Helper (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Jcrclustersupport_Cluster_Start_Level_Controller (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Default_Mail_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Impl_Cq_Mailing_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Impl_Email_Cq_Email_Template_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Impl_Email_Cq_Retriever_Template_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Campaign_Impl_Integration_Config_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Campaign_Importer_Personalized_Text_Handler_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Core_Newsletter_Newsletter_Email_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Impl_M_C_M_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Click_Through_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Graphical_Click_Throug (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Lead_Form_C_T_A_Component (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_M_Box_Experience_Tag_Ha (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_Target_Component_Tag_H (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Notification_Impl_Notification_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Personalization_Impl_Servlets_Targeting_Configuration_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Polling_Importer_Impl_Managed_Poll_Config_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Polling_Importer_Impl_Managed_Polling_Importer_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Polling_Importer_Impl_Polling_Importer_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Audit_Replication_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Content_Static_Content_Builder (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Agent_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Content_Durbo_Binary_Less_Content_Builder (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Content_Durbo_Durbo_Import_Configuration_Prov (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Replication_Content_Factory_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Replication_Receiver_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Replicator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Reverse_Replicator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Transport_Binary_Less_Transport_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Transport_Http (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Reporting_Impl_Cache_Cache_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Reporting_Impl_Config_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Reporting_Impl_R_Log_Analyzer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Transformer_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Info_Storage_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Processor_Impl_Html_Parser_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Search_Impl_Builder_Query_Builder_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Search_Suggest_Impl_Suggestion_Index_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Searchpromote_Impl_Publish_Search_Promote_Config_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Searchpromote_Impl_Search_Promote_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Security_A_C_L_Setup (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Statistics_Impl_Statistics_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Tagging_Impl_Jcr_Tag_Manager_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Tagging_Impl_Search_Tag_Predicate_Evaluator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Tagging_Impl_Tag_Garbage_Collector (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Contentsync_Impl_Handler_Pages_Update_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Contentsync_Impl_Rewriter_Path_Rewriter_Transformer_Factor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Authoring_U_I_Mode_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Commands_W_C_M_Command_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Devicedetection_Device_Identification_Mode_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Page_Event_Audit_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Page_Post_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Repository_Change_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Template_Post_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Language_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Link_Checker_Configuration_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Page_Page_Info_Aggregator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Page_Page_Manager_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_References_Content_Content_Reference_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Asset_View_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Connector_Connector_Vie (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Page_View_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Find_Replace_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Reference_Search_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Thumbnail_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Utils_Default_Page_Name_Validator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Variants_Page_Variants_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Version_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Version_Purge_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_W_C_M_Debug_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_W_C_M_Developer_Mode_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Warp_Time_Warp_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Mvt_M_V_T_Statistics_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Stats_Page_View_Statistics_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_W_C_M_Request_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Design_Package_Importer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Builder_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Page_Delete_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Entry_Preprocessor_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Mobile_Canvas_Builder_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Canvas_Compone (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Compon (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Tag_Han (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Head_Tag_Handle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_I_Frame_Tag_Hand (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Image_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Img_Tag_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Inline_Script_T (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Link_Tag_Handle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Meta_Tag_Handle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Non_Script_Tag_H (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Parsys_Compone (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Script_Tag_Hand (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Style_Tag_Handl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Text_Component (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Tag_Handl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Chooser_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Paragraph_Post_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Forms_Handling_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Mail_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Adaptive_Image_Component_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_H_T_T_P_Auth_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Page_Impressions_Tracker (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Page_Redirect_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Security_Impl_Default_Attachment_Type_Blacklist (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Security_Impl_Safer_Sling_Post_Validator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Mobile_Core_Impl_Device_Device_Info_Transformer_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Mobile_Core_Impl_Redirect_Redirect_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Copy_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Delete_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Update_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Order_Children_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Page_Move_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_References_Update_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Version_Copy_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Live_Relationship_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Rollout_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Servlets_Audit_Log_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Notification_Email_Impl_Email_Channel (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Notification_Impl_Notification_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Scripting_Impl_B_V_P_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Undo_Undo_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Webservicesupport_Impl_Replication_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Workflow_Impl_Wcm_Workflow_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Workflow_Impl_Workflow_Package_Info_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Widget_Impl_Html_Library_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Widget_Impl_Widget_Extension_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Workflow_Impl_Email_E_Mail_Notification_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Workflow_Impl_Email_Task_E_Mail_Notification_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Crx_Security_Token_Impl_Impl_Token_Authentication_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Crx_Security_Token_Impl_Token_Cleanup_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Guide_Localization_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Messaging_User_Component_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Aries_Jmx_Framework_State_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Eventadmin_Impl_Event_Admin (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Http (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Http_Sslfilter_Ssl_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Jaas_Configuration_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Jaas_Configuration_Spi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Scr_Scr_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Components_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Framework_Start_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Services_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Servlet_System_Alive_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Servlet_System_Ready_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_System_Ready_Monitor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Webconsole_Internal_Servlet_Osgi_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Webconsole_Plugins_Event_Internal_Plugin_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Webconsole_Plugins_Memoryusage_Internal_Memory_Usage_Co (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Http_Proxyconfigurator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_Data_Store_Text_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_File_Data_Store (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service_Pre (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Secondary_Secondary_Store_Cac (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Async_Indexer_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Lucene_Lucene_Index_Provider_Serv (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Embedded_Solr_Server_Co (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Node_State_Solr_Servers (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Oak_Solr_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Remote_Solr_Server_Conf (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Query_Index_Provid (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Server_Provider_Se (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Metric_Statistics_Provider_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Observation_Change_Collector_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Query_Query_Engine_Settings_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Authentication_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Ldap_Impl_Ldap_Identi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Token_Token_Configura (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authorization_Authorization_Configur (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Internal_Security_Provider_Registrati (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_User_Random_Authorizable_Node_Name (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_User_User_Configuration_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Azure_Azure_Segment_Store_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Monitor_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Standby_Store_Standby_Store_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_De (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Ex (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Pr (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Confi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Exclu (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_User_Action_Default_Authorizable (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Vault_Packaging_Impl_Packaging_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Vault_Packaging_Registry_Impl_F_S_Package_Registry (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Auth_Core_Impl_Logout_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Configuration_Bindings_Value_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Configuration_Resolver_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Inheritance_Stra (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Persistence_Stra (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Override_Osgi_Configuration_Override_Provi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Override_System_Property_Configuration_Ove (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Management_Impl_Configuration_Management_Setti (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Configuration_Resour (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Context_Path_Strategy (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Html_Internal_Tagsoup_Html_Parser (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Log_Log_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Writer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Metrics_Internal_Log_Reporter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Metrics_Rrd4j_Impl_Codahale_Metrics_Reporter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Mime_Internal_Mime_Type_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Scheduler_Impl_Quartz_Scheduler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Scheduler_Impl_Scheduler_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Threads_Impl_Default_Thread_Pool_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Datasource_Data_Source_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Datasource_J_N_D_I_Data_Source_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Discovery_Oak_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Discovery_Oak_Synchronized_Clocks_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Forward_Distribution_Agent_Facto (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Privilege_Distribution_Request_A (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Queue_Distribution_Agent_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Reverse_Distribution_Agent_Facto (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Simple_Distribution_Agent_Factor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Sync_Distribution_Agent_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Monitor_Distribution_Queue_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Agent_Distributio (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Local_Distributio (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Remote_Distributi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Local_Distributio (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Remote_Distributi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Repository_Distri (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Service_Resour (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Serialization_Impl_Distribution_Package_Bu (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Serialization_Impl_Vlt_Vault_Distribution (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Transport_Impl_User_Credentials_Distributi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Distribution_Event_Distribute (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Jcr_Event_Distribution_Trigger (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Persisted_Jcr_Event_Distributi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Remote_Event_Distribution_Trig (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Resource_Event_Distribution_Tr (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Scheduled_Distribution_Trigge (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Auth_Sling_Authenticator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Debug_Request_Progress_Tracker_Log_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Log_Request_Logger (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Log_Request_Logger_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Sling_Main_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Parameters (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Eventing_Thread_Pool (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Jobs_Default_Job_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Jobs_Jcr_Persistence_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Jobs_Job_Consumer_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Jobs_Queue_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Extensions_Webconsolesecurityprovider_Internal_Sling_W (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Featureflags_Feature (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Featureflags_Impl_Configured_Feature (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hapi_Impl_H_Api_Util_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Composite_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Executor_Health_Check_Executor_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Jmx_Attribute_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Scriptable_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Servlet_Health_Check_Executor_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Servlet_Result_Txt_Verbose_Serializer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_I18n_Impl_I18_N_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_I18n_Impl_Jcr_Resource_Bundle_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Installer_Provider_Jcr_Impl_Jcr_Installer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist_Fragment (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Davex_Impl_Servlets_Sling_Dav_Ex_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Jackrabbit_Server_Jndi_Registration_Support (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Jackrabbit_Server_Rmi_Registration_Support (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Repoinit_Impl_Repository_Initializer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Repoinit_Repository_Initializer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Resource_Internal_Jcr_Resource_Resolver_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Resource_Internal_Jcr_System_User_Validator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Resourcesecurity_Impl_Resource_Access_Gate_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Default_Handler_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Dir_Listing_Export_Handler_Servic (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Servlets_Simple_Web_Dav_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jmx_Provider_Impl_J_M_X_Resource_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Models_Impl_Model_Adapter_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Models_Jacksonexporter_Impl_Resource_Module_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Resource_Inventory_Impl_Resource_Inventory_Printer_Facto (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Resourcemerger_Impl_Merged_Resource_Provider_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Resourcemerger_Picker_Overriding (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Core_Impl_Script_Cache_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Core_Impl_Scripting_Resource_Resolver_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Java_Impl_Java_Script_Engine_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Javascript_Internal_Rhino_Java_Script_Engine_Fa (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Jsp_Jsp_Script_Engine_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Sightly_Js_Impl_Jsapi_Sly_Bindings_Values_Prov (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Security_Impl_Content_Disposition_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Security_Impl_Referrer_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl_Amended (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Get_Default_Get_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Get_Impl_Version_Version_Info_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Post_Impl_Helper_Chunk_Clean_Up_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Post_Impl_Sling_Post_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Resolver_Sling_Servlet_Resolver (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Settings_Impl_Sling_Settings_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Startupfilter_Impl_Startup_Filter_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Tenant_Internal_Tenant_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Tracer_Internal_Log_Tracer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Xss_Impl_X_S_S_Filter_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); end Skeleton; generic type Implementation_Type is limited new Server_Type with private; package Shared_Instance is procedure Register (Server : in out Swagger.Servers.Application_Type'Class); -- procedure Adaptive_Form_And_Interactive_Communication_Web_Channel_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Adaptive_Form_And_Interactive_Communication_Web_Channel_Theme_Configur (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Analytics_Component_Query_Cache_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Apache_Sling_Health_Check_Result_H_T_M_L_Serializer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Formsndocuments_Config_A_E_M_Forms_Manager_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Transaction_Core_Impl_Transaction_Recorder (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Deprecate_Indexes_H_C (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Replication_Agents_Disabled_H_C (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Mbean_Impl_Pre_Upgrade_Tasks_M_Bean_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Tasks_Impl_Consistency_Check_Task_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Account_Api_Account_Management_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Account_Impl_Account_Management_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Address_Impl_Location_Location_List_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Audit_Purge_Dam (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Audit_Purge_Pages (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Audit_Purge_Replication (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_A_W_S_Cloud_Front_Rewriter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Config_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Rewriter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cloudconfig_Core_Impl_Configuration_Replication_Event_Handle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Dynamic_Image_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Product_Asset_Handler_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Static_Image_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Video_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Promotion_Promotion_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Cataloggenerator_Catalog_Generator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Page_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Productfeed_Product_Feed_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Contentinsight_Impl_Reporting_Services_Settings_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Contentinsight_Impl_Servlets_Bright_Edge_Proxy_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Contentinsight_Impl_Servlets_Reporting_Services_Proxy_Servle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Component_Component_Config_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Conf_Feature_Config_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Asset_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Par_Range_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Payload_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Dm_Process_Image_P_Tiff_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Ips_Impl_Replication_Trigger_Replicate_On_Modify_Worker (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Mac_Sync_Helper_Impl_M_A_C_Sync_Client_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Mac_Sync_Impl_D_A_M_Sync_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Processor_Nui_Impl_Nui_Asset_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_S7imaging_Impl_Is_Image_Server_Component (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_S7imaging_Impl_Ps_Platform_Server_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Asset_I_O_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Dam_Webdav_Version_Linking_Job (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Special_Files_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Deserfw_Impl_Deserialization_Firewall_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dtm_Impl_Service_D_T_M_Web_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dtm_Impl_Servlets_D_T_M_Deploy_Hook_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dtm_Reactor_Impl_Service_Web_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Experiencelog_Impl_Experience_Log_Config_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Hc_Content_Packages_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_History_Impl_History_Request_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_History_Impl_History_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Inbox_Impl_Typeprovider_Item_Type_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Projects_Impl_Servlet_Project_Image_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Projects_Purge_Scheduler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Scheduled_Exporter_Impl_Scheduled_Exporter_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Analytics_Impl_Screens_Analytics_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Device_Impl_Device_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Device_Registration_Impl_Registration_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Handler_Channels_Update_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Jobs_Distributed_Devices_Stati_Update_Job (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Remote_Impl_Distributed_Http_Client_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Screens_Channel_Post_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Mq_Activemq_Impl_Artemis_J_M_S_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Offlinecontent_Impl_Bulk_Offline_Update_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Offlinecontent_Impl_Offline_Content_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Segmentation_Impl_Segmentation_Feature_Flag (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Bundles_Impl_Html_Library_Manager_Config_Health_Ch (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Bundles_Impl_Wcm_Filter_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Dispatcher_Impl_Dispatcher_Access_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Packages_Impl_Example_Content_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Webserver_Impl_Clickjacking_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Accountverification_Impl_Account_Management_Config_Im (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Stream_Co (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Event_Listener_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Moderation_Event_Exten (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Rating_Event_Activity_S (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Resource_Activity_Stre (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Calendar_Client_Endpoints_Impl_Calendar_Operations_I (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Calendar_Client_Operationextensions_Event_Attachmen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Calendar_Servlets_Time_Zone_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Delete_Event (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Operation_Se (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Translation_Operati (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Listing_Impl_Search_Comment_Social_C (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Scheduler_Impl_Search_Scheduled_Pos (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Cors_C_O_R_S_Authentication_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Android_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Builder_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Custom_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Quoted_Text_Patterns_Imp (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Configuration_Imp (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Importer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Gmail_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_I_O_S_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Macmail_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Out_Look_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Unknown_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Yahoo_Email_Client_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Maintainance_Impl_Delete_Temp_U_G_C_Image_Upload (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Ugclimiter_Impl_U_G_C_Limiter_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Ugclimitsconfig_Impl_Community_User_U_G_C_Limit (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Facebook_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_Authentication_Handle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_User_Profile_Mapper (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Twitter_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Content_Fragments_Services_Impl_Communities_Fragmen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Datastore_As_Impl_A_S_Resource_Provider_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Datastore_Op_Impl_Social_M_S_Resource_Provider_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Datastore_Rdb_Impl_Social_R_D_B_Resource_Provider_Factor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Learning_Path_Adaptor_F (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Resource_Adaptor_Facto (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Learningpath_Endpoints_Impl_Enablement_L (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Resource_Endpoints_Impl_Enablement_Resou (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Services_Impl_Author_Marker_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Filelibrary_Download_Ge (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Impl_File_Library_Opera (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Forum_Client_Endpoints_Impl_Forum_Operations_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Forum_Dispatcher_Impl_Flush_Operations (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Group_Client_Impl_Community_Group_Collection_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Group_Impl_Group_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Handlebars_Guava_Template_Cache_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ideation_Client_Endpoints_Impl_Ideation_Operations_S (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Journal_Client_Endpoints_Impl_Journal_Operations_Ser (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_Group_Profile (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_User_Profile_O (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Members_Impl_Community_Member_Group_Profile_Component_F (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Messaging_Client_Endpoints_Impl_Messaging_Operation (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Filter_Group_Social_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Moderation_Dashboard_Social (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_User_Details_Social_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Internal_Impl_Filter_Group_Soci (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Mentions_Router (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Notification_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Notifications_Router (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Qna_Client_Endpoints_Impl_Qna_Forum_Operations_Servic (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_I (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_M (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Site_Trend_Report_S (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Review_Client_Endpoints_Impl_Review_Operations_Servi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Scf_Core_Operations_Impl_Social_Operations_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Scf_Endpoints_Impl_Default_Social_Get_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Scoring_Impl_Scoring_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Serviceusers_Internal_Impl_Service_User_Wrapper_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Site_Endpoints_Impl_Site_Operation_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Site_Impl_Analytics_Component_Configuration_Service_Im (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Site_Impl_Site_Configurator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Srp_Impl_Social_Solr_Connector (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_Diff_Changes_Observer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_Group_Sync_Listener_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_Publisher_Sync_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_User_Sync_Listener_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Translation_Impl_Translation_Service_Config_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Translation_Impl_U_G_C_Language_Detector (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Dispatcher_Impl_Flush_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Aysnc_Reverse_Replicator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Publisher_Configuration_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Social_Utils_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Auto_Moderation_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Sentiment_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Default_Attachment_Type_Blackli (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Safer_Sling_Post_Validator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_User_Endpoints_Impl_Users_Group_From_Publish_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_User_Impl_Transport_Http_To_Publisher (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Ui_Wcm_Commons_Internal_Servlets_Rte_R_T_E_Filter_Servlet_Fact (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Content_Cleanup (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Install_Folder_Cleanup (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Delete_Config_Provider_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Job_Clean_Up_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Move_Config_Provider_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Page_Move_Config_Provider_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Launches_Impl_Launches_Event_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Mobile_Qrcode_Servlet_Q_R_Code_Image_Generator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Style_Internal_Component_Style_Info_Cache_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Translation_Impl_Translation_Platform_Configuration_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Fd_Fp_Config_Forms_Portal_Draftsand_Submission_Config_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Fd_Fp_Config_Forms_Portal_Scheduler_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Forms_Common_Service_Impl_Default_Data_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Forms_Common_Service_Impl_Forms_Common_Configuration_Service_Imp (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Forms_Common_Servlet_Temp_Clean_Up_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Acp_Platform_Platform_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Activitystreams_Impl_Activity_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Analyzer_Base_System_Status_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Analyzer_Scripts_Compile_All_Scripts_Compiler_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Apicontroller_Filter_Resolver_Hook_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Cert_Impl_Client_Cert_Auth_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_External_User_Id_Mapping_Provider_Extension (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Access_Token_Request_Customizer_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Instance_Credentials_Validator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_Ims_Config_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Accesstoken_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Bearer_Authentication_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Default_Token_Validator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Facebook_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Github_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Granite_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager_Internal (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_O_Auth_Authentication_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Twitter_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Requirement_Impl_Default_Requirement_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Saml_Saml_Authentication_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Sso_Impl_Sso_Authentication_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Code_Cache_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Crxde_Support_Bundle_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Dav_Ex_Bundle_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Inactive_Bundles_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Jobs_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Get_Servlet_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Java_Script_Handler_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Jsp_Script_Handler_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Referrer_Filter_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Web_Dav_Bundle_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Comments_Internal_Comment_Replication_Content_Filter_Fac (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Compatrouter_Impl_Compat_Switching_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Compatrouter_Impl_Routing_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Compatrouter_Impl_Switch_Mapping_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Conf_Impl_Runtime_Aware_Configuration_Resource_Resolving (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Contexthub_Impl_Context_Hub_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Cors_Impl_C_O_R_S_Policy_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Crypto_Distribution_Transport_Se (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Changes_Observer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Distribution_To_Replication_Even (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Replication_Adapters_Replicat (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Replication_Distribution_Trans (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Transport_Access_Token_Distribu (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Frags_Impl_Check_Http_Header_Flag (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Frags_Impl_Random_Feature (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Httpcache_File_File_Cache_Store (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Httpcache_Impl_Outer_Cache_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_I18n_Impl_Bundle_Pseudo_Translations (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_I18n_Impl_Preferences_Locale_Resolver_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Infocollector_Info_Collector (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Jetty_Ssl_Internal_Granite_Ssl_Connector_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_License_Impl_License_Check_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Logging_Impl_Log_Analyser_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Logging_Impl_Log_Error_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Data_Store_Garbage_Collection_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Lucene_Binaries_Cleanup_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Revision_Cleanup_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Monitoring_Impl_Script_Config_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Auth_Impl_O_Auth2_Server_Authentication_Han (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_Access_Token_Cleanup_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Client_Revocation_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Revocation_Endpoint_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Endpoint_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Revocation_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Configurator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Cloner (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Offloader (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Agent_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Default_Transpo (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Omnisearch_Impl_Core_Omni_Search_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Optout_Impl_Opt_Out_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Async_Index_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Large_Index_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Queries_Status_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Query_Health_Check_Metrics (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Query_Limits_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Replication_Hc_Impl_Replication_Queue_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Replication_Hc_Impl_Replication_Transport_Users_Health_C (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Authorizable_Node_Name_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Content_Sling_Sling_Content_Health_C (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Continuous_R_G_C_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Default_Access_User_Profile_Health_Che (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Default_Logins_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Disk_Space_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Observation_Queue_Length_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Impl_Commit_Stats_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Service_User_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Requests_Logging_Impl_Hc_Requests_Status_Health_Check_Im (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Resourcestatus_Impl_Composite_Status_Type (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Resourcestatus_Impl_Status_Resource_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Rest_Assets_Impl_Asset_Content_Disposition_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Rest_Impl_Api_Endpoint_Resource_Provider_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Rest_Impl_Servlet_Default_G_E_T_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Security_User_Ui_Internal_Servlets_S_S_L_Configuration_S (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Security_User_User_Properties_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Socialgraph_Impl_Social_Graph_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_System_Monitoring_Impl_System_Stats_M_Bean_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Adapter_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Archive_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Purge_Task_Purge_Maintenance_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Service_Task_Manager_Adapter_Factor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Threaddump_Thread_Dump_Collector (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Translation_Connector_Msft_Core_Impl_Microsoft_Transl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Translation_Core_Impl_Translation_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Ui_Clientlibs_Impl_Html_Library_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Console_Frags_Workflow_Withdraw_Feature (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Console_Publish_Workflow_Publish_Event_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Jcr_Workflow_Bucket_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Job_External_Process_Job_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Job_Job_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Offloading_Workflow_Offloading_Job_Consum (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Payload_Map_Cache (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Payloadmap_Payload_Move_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Workflow_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Workflow_Session_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Purge_Scheduler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Octopus_Ncomm_Bootstrap (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Social_Integrations_Livefyre_User_Pingforpull_Impl_Ping_Pull_S (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Xmp_Worker_Files_Ncomm_X_M_P_Files_N_Comm (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Commons_Datasource_Jdbcpool_Jdbc_Pool_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Commons_Httpclient (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Impl_Store_Properties_Change_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Exporter_Classifications_Exporte (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Importer_Report_Importer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Adapter_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Http_Client_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Account_Options_Updater (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Delete_Author_Activity_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Push_Author_Campaign_Page_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Segment_Importer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Service_Web_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Servlets_Admin_Server_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Testandtarget_Http_Client_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Auth_Impl_Cug_Cug_Support_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Auth_Impl_Login_Selector_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Commons_Impl_Externalizer_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Commons_Servlets_Root_Mapping_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Code_Upgrade_Execution_Condition_Checke (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Upgrade_Task_Ignore_List (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Version_Range_Task_Ignorelist (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Contentsync_Impl_Content_Sync_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Commons_Handler_Standard_Image_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Commons_Metadata_Xmp_Filter_Black_White (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Commons_Util_Impl_Asset_Cache_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Annotation_Pdf_Annotation_Pdf_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Asset_Move_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Assethome_Asset_Home_Page_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Assetlinkshare_Adhoc_Asset_Share_Proxy_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Cache_C_Q_Buffered_Image_Cache (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Change_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Event_Purge_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Event_Recorder_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Event_Dam_Event_Audit_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Expiry_Notification_Job_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Foldermetadataschema_Folder_Metadata_Schema_Feat (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Gfx_Commons_Gfx_Renderer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_E_P_S_Format_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Indesign_Format_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Jpeg_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Xmp_N_Comm_X_M_P_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Index_Update_Monitor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Migration_M_Bean_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Update_Monitor_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataexport_Async_Metadata_Export_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataimport_Async_Metadata_Import_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Lightbox_Lightbox_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Metadata_Editor_Select_Component_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Mime_Type_Asset_Upload_Restriction_Helper (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Mime_Type_Dam_Mime_Type_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Missing_Metadata_Notification_Job (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Process_Send_Transient_Workflow_Completed_Email_Pr (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Process_Text_Extraction_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Rendition_Maker_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Reports_Report_Export_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Reports_Report_Purge_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Download_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Status_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_X_M_P_Search_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Batch_Metadata_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Binary_Provider_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Collection_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Collections_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Companion_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Create_Asset_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Dam_Content_Disposition_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Guid_Lookup_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Health_Check_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Metadata_Get_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Multiple_License_Accept_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Resource_Collection_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Ui_Preview_Folder_Preview_Updater_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Unzip_Unzip_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Process_Exif_Tool_Extract_Metadata_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Process_Extract_Metadata_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Process_Metadata_Processor_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Ffmpeg_Locator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Gibson_Fontmanager_Impl_Font_Manager_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Standard_Pdf_Pdf_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Standard_Ps_Post_Script_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Standard_Psd_Psd_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Ids_Impl_I_D_S_Job_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Ids_Impl_I_D_S_Pool_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Indd_Impl_Handler_Indesign_X_M_P_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Indd_Impl_Servlet_Snippet_Creation_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Indd_Process_I_N_D_D_Media_Extract_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Data_Handler_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Report_Sync_Job (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Pim_Impl_Sourcing_Upload_Process_Product_Assets_Upload_Pro (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_S7dam_Dynamic_Media_Config_Even (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_Site_Catalyst_Report_Runner (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Create_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Modify_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Process_Video_Thumbnail_Download_Process (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_S7dam_Dam_Change_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Servlets_S7dam_Product_Info_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Video_Impl_Video_Proxy_Client_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_A_P_I_Client_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Asset_Mime_Type_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Configuration_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Dam_Change_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Flash_Templates_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Upload_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Stock_Integration_Impl_Cache_Stock_Cache_Configuration_Ser (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Stock_Integration_Impl_Configuration_Stock_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Video_Impl_Servlet_Video_Test_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Extwidget_Servlets_Image_Sprite_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Image_Internal_Font_Font_Helper (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Jcrclustersupport_Cluster_Start_Level_Controller (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Default_Mail_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Impl_Cq_Mailing_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Impl_Email_Cq_Email_Template_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Impl_Email_Cq_Retriever_Template_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Campaign_Impl_Integration_Config_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Campaign_Importer_Personalized_Text_Handler_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Core_Newsletter_Newsletter_Email_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Impl_M_C_M_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Click_Through_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Graphical_Click_Throug (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Lead_Form_C_T_A_Component (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_M_Box_Experience_Tag_Ha (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_Target_Component_Tag_H (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Notification_Impl_Notification_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Personalization_Impl_Servlets_Targeting_Configuration_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Polling_Importer_Impl_Managed_Poll_Config_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Polling_Importer_Impl_Managed_Polling_Importer_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Polling_Importer_Impl_Polling_Importer_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Audit_Replication_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Content_Static_Content_Builder (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Agent_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Content_Durbo_Binary_Less_Content_Builder (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Content_Durbo_Durbo_Import_Configuration_Prov (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Replication_Content_Factory_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Replication_Receiver_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Replicator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Reverse_Replicator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Transport_Binary_Less_Transport_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Transport_Http (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Reporting_Impl_Cache_Cache_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Reporting_Impl_Config_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Reporting_Impl_R_Log_Analyzer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Transformer_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Info_Storage_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Processor_Impl_Html_Parser_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Search_Impl_Builder_Query_Builder_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Search_Suggest_Impl_Suggestion_Index_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Searchpromote_Impl_Publish_Search_Promote_Config_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Searchpromote_Impl_Search_Promote_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Security_A_C_L_Setup (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Statistics_Impl_Statistics_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Tagging_Impl_Jcr_Tag_Manager_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Tagging_Impl_Search_Tag_Predicate_Evaluator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Tagging_Impl_Tag_Garbage_Collector (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Contentsync_Impl_Handler_Pages_Update_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Contentsync_Impl_Rewriter_Path_Rewriter_Transformer_Factor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Authoring_U_I_Mode_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Commands_W_C_M_Command_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Devicedetection_Device_Identification_Mode_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Page_Event_Audit_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Page_Post_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Repository_Change_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Template_Post_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Language_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Link_Checker_Configuration_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Page_Page_Info_Aggregator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Page_Page_Manager_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_References_Content_Content_Reference_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Asset_View_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Connector_Connector_Vie (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Page_View_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Find_Replace_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Reference_Search_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Thumbnail_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Utils_Default_Page_Name_Validator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Variants_Page_Variants_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Version_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Version_Purge_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_W_C_M_Debug_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_W_C_M_Developer_Mode_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Warp_Time_Warp_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Mvt_M_V_T_Statistics_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Stats_Page_View_Statistics_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_W_C_M_Request_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Design_Package_Importer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Builder_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Page_Delete_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Entry_Preprocessor_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Mobile_Canvas_Builder_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Canvas_Compone (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Compon (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Tag_Han (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Head_Tag_Handle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_I_Frame_Tag_Hand (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Image_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Img_Tag_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Inline_Script_T (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Link_Tag_Handle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Meta_Tag_Handle (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Non_Script_Tag_H (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Parsys_Compone (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Script_Tag_Hand (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Style_Tag_Handl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Text_Component (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Componen (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Tag_Handl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Chooser_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Paragraph_Post_Processor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Forms_Handling_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Mail_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Adaptive_Image_Component_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_H_T_T_P_Auth_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Page_Impressions_Tracker (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Page_Redirect_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Security_Impl_Default_Attachment_Type_Blacklist (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Security_Impl_Safer_Sling_Post_Validator_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Mobile_Core_Impl_Device_Device_Info_Transformer_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Mobile_Core_Impl_Redirect_Redirect_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Copy_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Delete_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Update_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Order_Children_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Page_Move_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_References_Update_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Version_Copy_Action_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Live_Relationship_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Rollout_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Servlets_Audit_Log_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Notification_Email_Impl_Email_Channel (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Notification_Impl_Notification_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Scripting_Impl_B_V_P_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Undo_Undo_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Webservicesupport_Impl_Replication_Event_Listener (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Workflow_Impl_Wcm_Workflow_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Workflow_Impl_Workflow_Package_Info_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Widget_Impl_Html_Library_Manager_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Widget_Impl_Widget_Extension_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Workflow_Impl_Email_E_Mail_Notification_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Workflow_Impl_Email_Task_E_Mail_Notification_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Crx_Security_Token_Impl_Impl_Token_Authentication_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Crx_Security_Token_Impl_Token_Cleanup_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Guide_Localization_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Messaging_User_Component_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Aries_Jmx_Framework_State_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Eventadmin_Impl_Event_Admin (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Http (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Http_Sslfilter_Ssl_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Jaas_Configuration_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Jaas_Configuration_Spi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Scr_Scr_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Components_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Framework_Start_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Services_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Servlet_System_Alive_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Servlet_System_Ready_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_System_Ready_Monitor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Webconsole_Internal_Servlet_Osgi_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Webconsole_Plugins_Event_Internal_Plugin_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Webconsole_Plugins_Memoryusage_Internal_Memory_Usage_Co (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Http_Proxyconfigurator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_Data_Store_Text_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_File_Data_Store (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service_Pre (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Secondary_Secondary_Store_Cac (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Async_Indexer_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Lucene_Lucene_Index_Provider_Serv (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Embedded_Solr_Server_Co (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Node_State_Solr_Servers (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Oak_Solr_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Remote_Solr_Server_Conf (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Query_Index_Provid (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Server_Provider_Se (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Metric_Statistics_Provider_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Observation_Change_Collector_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Query_Query_Engine_Settings_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Authentication_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Ldap_Impl_Ldap_Identi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Token_Token_Configura (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authorization_Authorization_Configur (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Internal_Security_Provider_Registrati (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_User_Random_Authorizable_Node_Name (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_User_User_Configuration_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Azure_Azure_Segment_Store_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Monitor_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Standby_Store_Standby_Store_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_De (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Ex (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Pr (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Confi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Exclu (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_User_Action_Default_Authorizable (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Vault_Packaging_Impl_Packaging_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Vault_Packaging_Registry_Impl_F_S_Package_Registry (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Auth_Core_Impl_Logout_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Configuration_Bindings_Value_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Configuration_Resolver_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Inheritance_Stra (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Persistence_Stra (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Override_Osgi_Configuration_Override_Provi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Override_System_Property_Configuration_Ove (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Management_Impl_Configuration_Management_Setti (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Configuration_Resour (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Context_Path_Strategy (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Html_Internal_Tagsoup_Html_Parser (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Log_Log_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Writer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Metrics_Internal_Log_Reporter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Metrics_Rrd4j_Impl_Codahale_Metrics_Reporter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Mime_Internal_Mime_Type_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Scheduler_Impl_Quartz_Scheduler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Scheduler_Impl_Scheduler_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Threads_Impl_Default_Thread_Pool_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Datasource_Data_Source_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Datasource_J_N_D_I_Data_Source_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Discovery_Oak_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Discovery_Oak_Synchronized_Clocks_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Forward_Distribution_Agent_Facto (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Privilege_Distribution_Request_A (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Queue_Distribution_Agent_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Reverse_Distribution_Agent_Facto (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Simple_Distribution_Agent_Factor (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Sync_Distribution_Agent_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Monitor_Distribution_Queue_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Agent_Distributio (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Local_Distributio (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Remote_Distributi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Local_Distributio (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Remote_Distributi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Repository_Distri (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Service_Resour (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Serialization_Impl_Distribution_Package_Bu (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Serialization_Impl_Vlt_Vault_Distribution (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Transport_Impl_User_Credentials_Distributi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Distribution_Event_Distribute (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Jcr_Event_Distribution_Trigger (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Persisted_Jcr_Event_Distributi (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Remote_Event_Distribution_Trig (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Resource_Event_Distribution_Tr (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Scheduled_Distribution_Trigge (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Auth_Sling_Authenticator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Debug_Request_Progress_Tracker_Log_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Log_Request_Logger (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Log_Request_Logger_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Sling_Main_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Parameters (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Eventing_Thread_Pool (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Jobs_Default_Job_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Jobs_Jcr_Persistence_Handler (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Jobs_Job_Consumer_Manager (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Jobs_Queue_Configuration (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Extensions_Webconsolesecurityprovider_Internal_Sling_W (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Featureflags_Feature (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Featureflags_Impl_Configured_Feature (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hapi_Impl_H_Api_Util_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Composite_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Executor_Health_Check_Executor_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Jmx_Attribute_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Scriptable_Health_Check (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Servlet_Health_Check_Executor_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Servlet_Result_Txt_Verbose_Serializer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_I18n_Impl_I18_N_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_I18n_Impl_Jcr_Resource_Bundle_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Installer_Provider_Jcr_Impl_Jcr_Installer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist_Fragment (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Davex_Impl_Servlets_Sling_Dav_Ex_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Jackrabbit_Server_Jndi_Registration_Support (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Jackrabbit_Server_Rmi_Registration_Support (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Repoinit_Impl_Repository_Initializer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Repoinit_Repository_Initializer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Resource_Internal_Jcr_Resource_Resolver_Factory_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Resource_Internal_Jcr_System_User_Validator (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Resourcesecurity_Impl_Resource_Access_Gate_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Default_Handler_Service (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Dir_Listing_Export_Handler_Servic (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Servlets_Simple_Web_Dav_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jmx_Provider_Impl_J_M_X_Resource_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Models_Impl_Model_Adapter_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Models_Jacksonexporter_Impl_Resource_Module_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Resource_Inventory_Impl_Resource_Inventory_Printer_Facto (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Resourcemerger_Impl_Merged_Resource_Provider_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Resourcemerger_Picker_Overriding (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Core_Impl_Script_Cache_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Core_Impl_Scripting_Resource_Resolver_Provider (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Java_Impl_Java_Script_Engine_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Javascript_Internal_Rhino_Java_Script_Engine_Fa (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Jsp_Jsp_Script_Engine_Factory (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Sightly_Js_Impl_Jsapi_Sly_Bindings_Values_Prov (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Security_Impl_Content_Disposition_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Security_Impl_Referrer_Filter (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl_Amended (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Get_Default_Get_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Get_Impl_Version_Version_Info_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Post_Impl_Helper_Chunk_Clean_Up_Task (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Post_Impl_Sling_Post_Servlet (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Resolver_Sling_Servlet_Resolver (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Settings_Impl_Sling_Settings_Service_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Startupfilter_Impl_Startup_Filter_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Tenant_Internal_Tenant_Provider_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Tracer_Internal_Log_Tracer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Xss_Impl_X_S_S_Filter_Impl (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); private protected Server is -- procedure Adaptive_Form_And_Interactive_Communication_Web_Channel_Configuration (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Show_Placeholder : in Swagger.Nullable_Boolean; Maximum_Cache_Entries : in Swagger.Nullable_Integer; Af_Periodscripting_Periodcompatversion : in Swagger.Nullable_UString; Make_File_Name_Unique : in Swagger.Nullable_Boolean; Generating_Compliant_Data : in Swagger.Nullable_Boolean; Result : out .Models.AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Adaptive_Form_And_Interactive_Communication_Web_Channel_Theme_Configur (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Font_List : in Swagger.UString_Vectors.Vector; Result : out .Models.AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Analytics_Component_Query_Cache_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodcomponent_Periodquery_Periodcache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.AnalyticsComponentQueryCacheServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Apache_Sling_Health_Check_Result_H_T_M_L_Serializer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Style_String : in Swagger.Nullable_UString; Result : out .Models.ApacheSlingHealthCheckResultHTMLSerializerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Formsndocuments_Config_A_E_M_Forms_Manager_Configuration (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forms_Manager_Config_Periodinclude_O_O_T_B_Templates : in Swagger.Nullable_Boolean; Forms_Manager_Config_Periodinclude_Deprecated_Templates : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Transaction_Core_Impl_Transaction_Recorder (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Transaction_Recording_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeAemTransactionCoreImplTransactionRecorderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Deprecate_Indexes_H_C (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Hc_Impl_Replication_Agents_Disabled_H_C (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Mbean_Impl_Pre_Upgrade_Tasks_M_Bean_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pre_Upgrade_Periodmaintenance_Periodtasks : in Swagger.UString_Vectors.Vector; Pre_Upgrade_Periodhc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Aem_Upgrade_Prechecks_Tasks_Impl_Consistency_Check_Task_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Root_Periodpath : in Swagger.Nullable_UString; Fix_Periodinconsistencies : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Account_Api_Account_Management_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaccountmanager_Periodtoken_Periodvalidity_Periodperiod : in Swagger.Nullable_Integer; Cq_Periodaccountmanager_Periodconfig_Periodrequestnewaccount_Periodmail : in Swagger.Nullable_UString; Cq_Periodaccountmanager_Periodconfig_Periodrequestnewpwd_Periodmail : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAccountApiAccountManagementServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Account_Impl_Account_Management_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaccountmanager_Periodconfig_Periodinformnewaccount_Periodmail : in Swagger.Nullable_UString; Cq_Periodaccountmanager_Periodconfig_Periodinformnewpwd_Periodmail : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAccountImplAccountManagementServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Address_Impl_Location_Location_List_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaddress_Periodlocation_Perioddefault_Periodmax_Results : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqAddressImplLocationLocationListServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Audit_Purge_Dam (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlog_Periodrule_Periodname : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodcontentpath : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodminimumage : in Swagger.Nullable_Integer; Auditlog_Periodrule_Periodtypes : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAuditPurgeDamInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Audit_Purge_Pages (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlog_Periodrule_Periodname : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodcontentpath : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodminimumage : in Swagger.Nullable_Integer; Auditlog_Periodrule_Periodtypes : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAuditPurgePagesInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Audit_Purge_Replication (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlog_Periodrule_Periodname : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodcontentpath : in Swagger.Nullable_UString; Auditlog_Periodrule_Periodminimumage : in Swagger.Nullable_Integer; Auditlog_Periodrule_Periodtypes : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqAuditPurgeReplicationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_A_W_S_Cloud_Front_Rewriter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Keypair_Periodid : in Swagger.Nullable_UString; Keypair_Periodalias : in Swagger.Nullable_UString; Cdnrewriter_Periodattributes : in Swagger.UString_Vectors.Vector; Cdn_Periodrewriter_Perioddistribution_Perioddomain : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Config_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cdn_Periodconfig_Perioddistribution_Perioddomain : in Swagger.Nullable_UString; Cdn_Periodconfig_Periodenable_Periodrewriting : in Swagger.Nullable_Boolean; Cdn_Periodconfig_Periodpath_Periodprefixes : in Swagger.UString_Vectors.Vector; Cdn_Periodconfig_Periodcdnttl : in Swagger.Nullable_Integer; Cdn_Periodconfig_Periodapplication_Periodprotocol : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCdnRewriterImplCDNConfigServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cdn_Rewriter_Impl_C_D_N_Rewriter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Cdnrewriter_Periodattributes : in Swagger.UString_Vectors.Vector; Cdn_Periodrewriter_Perioddistribution_Perioddomain : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCdnRewriterImplCDNRewriterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Cloudconfig_Core_Impl_Configuration_Replication_Event_Handle (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Flush_Periodagents : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Dynamic_Image_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodactive : in Swagger.Nullable_Boolean; Cq_Periodcommerce_Periodasset_Periodhandler_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetDynamicImageHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Product_Asset_Handler_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodfallback : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Static_Image_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodactive : in Swagger.Nullable_Boolean; Cq_Periodcommerce_Periodasset_Periodhandler_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetStaticImageHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Asset_Video_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodasset_Periodhandler_Periodactive : in Swagger.Nullable_Boolean; Cq_Periodcommerce_Periodasset_Periodhandler_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplAssetVideoHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Impl_Promotion_Promotion_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodpromotion_Periodroot : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommerceImplPromotionPromotionManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Cataloggenerator_Catalog_Generator_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodcataloggenerator_Periodbucketsize : in Swagger.Nullable_Integer; Cq_Periodcommerce_Periodcataloggenerator_Periodbucketname : in Swagger.Nullable_UString; Cq_Periodcommerce_Periodcataloggenerator_Periodexcludedtemplateproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Page_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcommerce_Periodpageeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqCommercePimImplPageEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Commerce_Pim_Impl_Productfeed_Product_Feed_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Feed generator algorithm : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Contentinsight_Impl_Reporting_Services_Settings_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Reportingservices_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqContentinsightImplReportingServicesSettingsProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Contentinsight_Impl_Servlets_Bright_Edge_Proxy_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Brightedge_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Contentinsight_Impl_Servlets_Reporting_Services_Proxy_Servle (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Reportingservices_Periodproxy_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqContentinsightImplServletsReportingServicesProxyServleInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Component_Component_Config_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dam_Periodcfm_Periodcomponent_Periodresource_Type : in Swagger.Nullable_UString; Dam_Periodcfm_Periodcomponent_Periodfile_Reference_Prop : in Swagger.Nullable_UString; Dam_Periodcfm_Periodcomponent_Periodelements_Prop : in Swagger.Nullable_UString; Dam_Periodcfm_Periodcomponent_Periodvariation_Prop : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplComponentComponentConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Conf_Feature_Config_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dam_Periodcfm_Periodresource_Types : in Swagger.UString_Vectors.Vector; Dam_Periodcfm_Periodreference_Properties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqDamCfmImplConfFeatureConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Asset_Processor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pipeline_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplContentRewriterAssetProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Par_Range_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pipeline_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplContentRewriterParRangeFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Cfm_Impl_Content_Rewriter_Payload_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pipeline_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamCfmImplContentRewriterPayloadFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Dm_Process_Image_P_Tiff_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Memory : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamDmProcessImagePTiffManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Ips_Impl_Replication_Trigger_Replicate_On_Modify_Worker (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dmreplicateonmodify_Periodenabled : in Swagger.Nullable_Boolean; Dmreplicateonmodify_Periodforcesyncdeletes : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Mac_Sync_Helper_Impl_M_A_C_Sync_Client_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Perioddam_Periodmac_Periodsync_Periodclient_Periodso_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamMacSyncHelperImplMACSyncClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Mac_Sync_Impl_D_A_M_Sync_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodregistered_Paths : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodsync_Periodrenditions : in Swagger.Nullable_Boolean; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodreplicate_Periodthread_Periodwait_Periodms : in Swagger.Nullable_Integer; Com_Periodadobe_Periodcq_Perioddam_Periodmac_Periodsync_Perioddamsyncservice_Periodplatform : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamMacSyncImplDAMSyncServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Processor_Nui_Impl_Nui_Asset_Processor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Nui_Enabled : in Swagger.Nullable_Boolean; Nui_Service_Url : in Swagger.Nullable_UString; Nui_Api_Key : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDamProcessorNuiImplNuiAssetProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_S7imaging_Impl_Is_Image_Server_Component (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Tcp_Port : in Swagger.Nullable_UString; Allow_Remote_Access : in Swagger.Nullable_Boolean; Max_Render_Rgn_Pixels : in Swagger.Nullable_UString; Max_Message_Size : in Swagger.Nullable_UString; Random_Access_Url_Timeout : in Swagger.Nullable_Integer; Worker_Threads : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamS7imagingImplIsImageServerComponentInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_S7imaging_Impl_Ps_Platform_Server_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cache_Periodenable : in Swagger.Nullable_Boolean; Cache_Periodroot_Paths : in Swagger.UString_Vectors.Vector; Cache_Periodmax_Size : in Swagger.Nullable_Integer; Cache_Periodmax_Entries : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamS7imagingImplPsPlatformServerServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Asset_I_O_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Path_Prefix : in Swagger.Nullable_UString; Create_Version : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqDamWebdavImplIoAssetIOHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Dam_Webdav_Version_Linking_Job (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodwebdav_Periodversion_Periodlinking_Periodenable : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodwebdav_Periodversion_Periodlinking_Periodscheduler_Periodperiod : in Swagger.Nullable_Integer; Cq_Perioddam_Periodwebdav_Periodversion_Periodlinking_Periodstaging_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dam_Webdav_Impl_Io_Special_Files_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodday_Periodcq_Perioddam_Periodcore_Periodimpl_Periodio_Period_Special_Files_Handler_Periodfilepatters : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqDamWebdavImplIoSpecialFilesHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Deserfw_Impl_Deserialization_Firewall_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Firewall_Perioddeserialization_Periodwhitelist : in Swagger.UString_Vectors.Vector; Firewall_Perioddeserialization_Periodblacklist : in Swagger.UString_Vectors.Vector; Firewall_Perioddeserialization_Perioddiagnostics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqDeserfwImplDeserializationFirewallImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dtm_Impl_Service_D_T_M_Web_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Connection_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDtmImplServiceDTMWebServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dtm_Impl_Servlets_D_T_M_Deploy_Hook_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dtm_Periodstaging_Periodip_Periodwhitelist : in Swagger.UString_Vectors.Vector; Dtm_Periodproduction_Periodip_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqDtmImplServletsDTMDeployHookServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Dtm_Reactor_Impl_Service_Web_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Endpoint_Uri : in Swagger.Nullable_UString; Connection_Timeout : in Swagger.Nullable_Integer; Socket_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqDtmReactorImplServiceWebServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Experiencelog_Impl_Experience_Log_Config_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Disabled_For_Groups : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqExperiencelogImplExperienceLogConfigServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Hc_Content_Packages_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Package_Periodnames : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqHcContentPackagesHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_History_Impl_History_Request_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; History_Periodrequest_Filter_Periodexcluded_Selectors : in Swagger.UString_Vectors.Vector; History_Periodrequest_Filter_Periodexcluded_Extensions : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqHistoryImplHistoryRequestFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_History_Impl_History_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; History_Periodservice_Periodresource_Types : in Swagger.UString_Vectors.Vector; History_Periodservice_Periodpath_Filter : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqHistoryImplHistoryServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Inbox_Impl_Typeprovider_Item_Type_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Inbox_Periodimpl_Periodtypeprovider_Periodregistrypaths : in Swagger.UString_Vectors.Vector; Inbox_Periodimpl_Periodtypeprovider_Periodlegacypaths : in Swagger.UString_Vectors.Vector; Inbox_Periodimpl_Periodtypeprovider_Perioddefaulturl_Periodfailureitem : in Swagger.Nullable_UString; Inbox_Periodimpl_Periodtypeprovider_Perioddefaulturl_Periodworkitem : in Swagger.Nullable_UString; Inbox_Periodimpl_Periodtypeprovider_Perioddefaulturl_Periodtask : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqInboxImplTypeproviderItemTypeProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Projects_Impl_Servlet_Project_Image_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Image_Periodquality : in Swagger.Nullable_UString; Image_Periodsupported_Periodresolutions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqProjectsImplServletProjectImageServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Projects_Purge_Scheduler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduledpurge_Periodname : in Swagger.Nullable_UString; Scheduledpurge_Periodpurge_Active : in Swagger.Nullable_Boolean; Scheduledpurge_Periodtemplates : in Swagger.UString_Vectors.Vector; Scheduledpurge_Periodpurge_Groups : in Swagger.Nullable_Boolean; Scheduledpurge_Periodpurge_Assets : in Swagger.Nullable_Boolean; Scheduledpurge_Periodterminate_Running_Workflows : in Swagger.Nullable_Boolean; Scheduledpurge_Perioddaysold : in Swagger.Nullable_Integer; Scheduledpurge_Periodsave_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqProjectsPurgeSchedulerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Scheduled_Exporter_Impl_Scheduled_Exporter_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Include_Periodpaths : in Swagger.UString_Vectors.Vector; Exporter_Perioduser : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScheduledExporterImplScheduledExporterImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Analytics_Impl_Screens_Analytics_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodurl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodapikey : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodproject : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodenvironment : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodanalytics_Periodimpl_Periodsend_Frequency : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Device_Impl_Device_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodaem_Periodscreens_Periodplayer_Periodpingfrequency : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodspecialchars : in Swagger.Nullable_UString; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminlowercasechars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminuppercasechars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminnumberchars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminspecialchars : in Swagger.Nullable_Integer; Com_Periodadobe_Periodaem_Periodscreens_Perioddevice_Periodpasword_Periodminlength : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensDeviceImplDeviceServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Device_Registration_Impl_Registration_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Device_Registration_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Handler_Channels_Update_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodimageresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodproductresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodvideoresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Perioddynamicsequenceresourcetypes : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodpreviewmodepaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqScreensImplHandlerChannelsUpdateHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Jobs_Distributed_Devices_Stati_Update_Job (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Remote_Impl_Distributed_Http_Client_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodaem_Periodscreens_Periodimpl_Periodremote_Periodrequest_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Impl_Screens_Channel_Post_Processor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Screens_Periodchannels_Periodproperties_Periodto_Periodremove : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqScreensImplScreensChannelPostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodproject_Path : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodschedule_Frequency : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodping_Timeout : in Swagger.Nullable_Integer; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodrecipients : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodsmtpserver : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodsmtpport : in Swagger.Nullable_Integer; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodusetls : in Swagger.Nullable_Boolean; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodusername : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodmonitoring_Periodimpl_Period_Screens_Monitoring_Service_Impl_Periodpassword : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Mq_Activemq_Impl_Artemis_J_M_S_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Global_Periodsize : in Swagger.Nullable_Integer; Max_Perioddisk_Periodusage : in Swagger.Nullable_Integer; Persistence_Periodenabled : in Swagger.Nullable_Boolean; Thread_Periodpool_Periodmax_Periodsize : in Swagger.Nullable_Integer; Scheduled_Periodthread_Periodpool_Periodmax_Periodsize : in Swagger.Nullable_Integer; Graceful_Periodshutdown_Periodtimeout : in Swagger.Nullable_Integer; Queues : in Swagger.UString_Vectors.Vector; Topics : in Swagger.UString_Vectors.Vector; Addresses_Periodmax_Perioddelivery_Periodattempts : in Swagger.Nullable_Integer; Addresses_Periodexpiry_Perioddelay : in Swagger.Nullable_Integer; Addresses_Periodaddress_Periodfull_Periodmessage_Periodpolicy : in Swagger.Nullable_UString; Addresses_Periodmax_Periodsize_Periodbytes : in Swagger.Nullable_Integer; Addresses_Periodpage_Periodsize_Periodbytes : in Swagger.Nullable_Integer; Addresses_Periodpage_Periodcache_Periodmax_Periodsize : in Swagger.Nullable_Integer; Cluster_Perioduser : in Swagger.Nullable_UString; Cluster_Periodpassword : in Swagger.Nullable_UString; Cluster_Periodcall_Periodtimeout : in Swagger.Nullable_Integer; Cluster_Periodcall_Periodfailover_Periodtimeout : in Swagger.Nullable_Integer; Cluster_Periodclient_Periodfailure_Periodcheck_Periodperiod : in Swagger.Nullable_Integer; Cluster_Periodnotification_Periodattempts : in Swagger.Nullable_Integer; Cluster_Periodnotification_Periodinterval : in Swagger.Nullable_Integer; Id_Periodcache_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodconfirmation_Periodwindow_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodconnection_Periodttl : in Swagger.Nullable_Integer; Cluster_Periodduplicate_Perioddetection : in Swagger.Nullable_Boolean; Cluster_Periodinitial_Periodconnect_Periodattempts : in Swagger.Nullable_Integer; Cluster_Periodmax_Periodretry_Periodinterval : in Swagger.Nullable_Integer; Cluster_Periodmin_Periodlarge_Periodmessage_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodproducer_Periodwindow_Periodsize : in Swagger.Nullable_Integer; Cluster_Periodreconnect_Periodattempts : in Swagger.Nullable_Integer; Cluster_Periodretry_Periodinterval : in Swagger.Nullable_Integer; Cluster_Periodretry_Periodinterval_Periodmultiplier : in Swagger.Number; Result : out .Models.ComAdobeCqScreensMqActivemqImplArtemisJMSProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Offlinecontent_Impl_Bulk_Offline_Update_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodofflinecontent_Periodimpl_Period_Bulk_Offline_Update_Service_Impl_Periodproject_Path : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodscreens_Periodofflinecontent_Periodimpl_Period_Bulk_Offline_Update_Service_Impl_Periodschedule_Frequency : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Offlinecontent_Impl_Offline_Content_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disable_Smart_Sync : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Screens_Segmentation_Impl_Segmentation_Feature_Flag (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Data_Triggered_Content : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Bundles_Impl_Html_Library_Manager_Config_Health_Ch (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Bundles_Impl_Wcm_Filter_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Dispatcher_Impl_Dispatcher_Access_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Dispatcher_Periodaddress : in Swagger.Nullable_UString; Dispatcher_Periodfilter_Periodallowed : in Swagger.UString_Vectors.Vector; Dispatcher_Periodfilter_Periodblocked : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Packages_Impl_Example_Content_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Security_Hc_Webserver_Impl_Clickjacking_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Webserver_Periodaddress : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Accountverification_Impl_Account_Management_Config_Im (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable : in Swagger.Nullable_Boolean; Ttl1 : in Swagger.Nullable_Integer; Ttl2 : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialAccountverificationImplAccountManagementConfigImInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Componen (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Client_Impl_Social_Activity_Stream_Co (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Event_Listener_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Moderation_Event_Exten (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Accepted : in Swagger.Nullable_Boolean; Ranked : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Rating_Event_Activity_S (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ranking : in Swagger.Nullable_Integer; Enable : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Activitystreams_Listener_Impl_Resource_Activity_Stre (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Stream_Path : in Swagger.Nullable_UString; Stream_Name : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Calendar_Client_Endpoints_Impl_Calendar_Operations_I (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Retry : in Swagger.Nullable_Integer; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Calendar_Client_Operationextensions_Event_Attachmen (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.Nullable_UString; Extension_Periodorder : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Calendar_Servlets_Time_Zone_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Timezones_Periodexpirytime : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCalendarServletsTimeZoneServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Delete_Event (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Comment_Operation_Se (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Endpoints_Impl_Translation_Operati (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Listing_Impl_Search_Comment_Social_C (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Num_User_Limit : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Comments_Scheduler_Impl_Search_Scheduled_Pos (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Scheduled_Posts_Search : in Swagger.Nullable_Boolean; Number_Of_Minutes : in Swagger.Nullable_Integer; Max_Search_Limit : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Cors_C_O_R_S_Authentication_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cors_Periodenabling : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Android_Email_Client_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Builder_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Context_Periodpath : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Comment_Email_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Custom_Email_Client_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Quoted_Text_Patterns_Imp (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pattern_Periodtime : in Swagger.Nullable_UString; Pattern_Periodnewline : in Swagger.Nullable_UString; Pattern_Periodday_Of_Month : in Swagger.Nullable_UString; Pattern_Periodmonth : in Swagger.Nullable_UString; Pattern_Periodyear : in Swagger.Nullable_UString; Pattern_Perioddate : in Swagger.Nullable_UString; Pattern_Perioddate_Time : in Swagger.Nullable_UString; Pattern_Periodemail : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Configuration_Imp (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Email_Periodname : in Swagger.Nullable_UString; Email_Periodcreate_Post_From_Reply : in Swagger.Nullable_Boolean; Email_Periodadd_Comment_Id_To : in Swagger.Nullable_UString; Email_Periodsubject_Maximum_Length : in Swagger.Nullable_Integer; Email_Periodreply_To_Address : in Swagger.Nullable_UString; Email_Periodreply_To_Delimiter : in Swagger.Nullable_UString; Email_Periodtracker_Id_Prefix_In_Subject : in Swagger.Nullable_UString; Email_Periodtracker_Id_Prefix_In_Body : in Swagger.Nullable_UString; Email_Periodas_H_T_M_L : in Swagger.Nullable_Boolean; Email_Perioddefault_User_Name : in Swagger.Nullable_UString; Email_Periodtemplates_Periodroot_Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Email_Reply_Importer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Connect_Protocol : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Gmail_Email_Client_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_I_O_S_Email_Client_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Macmail_Email_Client_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Out_Look_Email_Client_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Unknown_Email_Client_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Emailreply_Impl_Yahoo_Email_Client_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority_Order : in Swagger.Nullable_Integer; Reply_Email_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Maintainance_Impl_Delete_Temp_U_G_C_Image_Upload (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Number_Of_Days : in Swagger.Nullable_Integer; Age_Of_File : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Ugclimiter_Impl_U_G_C_Limiter_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Verbs : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Commons_Ugclimitsconfig_Impl_Community_User_U_G_C_Limit (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable : in Swagger.Nullable_Boolean; U_G_C_Limit : in Swagger.Nullable_Integer; Ugc_Limit_Duration : in Swagger.Nullable_Integer; Domains : in Swagger.UString_Vectors.Vector; To_List : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Facebook_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodcloud_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Periodcreate_Periodtags_Periodenabled : in Swagger.Nullable_Boolean; Provider_Periodconfig_Perioduser_Periodfolder : in Swagger.Nullable_UString; Provider_Periodconfig_Periodfacebook_Periodfetch_Periodfields : in Swagger.Nullable_Boolean; Provider_Periodconfig_Periodfacebook_Periodfields : in Swagger.UString_Vectors.Vector; Provider_Periodconfig_Periodrefresh_Perioduserdata_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialConnectOauthImplFacebookProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_Authentication_Handle (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Social_O_Auth_User_Profile_Mapper (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Facebook : in Swagger.UString_Vectors.Vector; Twitter : in Swagger.UString_Vectors.Vector; Provider_Periodconfig_Perioduser_Periodfolder : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Connect_Oauth_Impl_Twitter_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodcloud_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Periodroot : in Swagger.Nullable_UString; Provider_Periodconfig_Perioduser_Periodfolder : in Swagger.Nullable_UString; Provider_Periodconfig_Periodtwitter_Periodenable_Periodparams : in Swagger.Nullable_Boolean; Provider_Periodconfig_Periodtwitter_Periodparams : in Swagger.UString_Vectors.Vector; Provider_Periodconfig_Periodrefresh_Perioduserdata_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialConnectOauthImplTwitterProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Content_Fragments_Services_Impl_Communities_Fragmen (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodcontent_Periodfragments_Periodservices_Periodenabled : in Swagger.Nullable_Boolean; Cq_Periodsocial_Periodcontent_Periodfragments_Periodservices_Periodwait_Time_Seconds : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Datastore_As_Impl_A_S_Resource_Provider_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Version_Periodid : in Swagger.Nullable_UString; Cache_Periodon : in Swagger.Nullable_Boolean; Concurrency_Periodlevel : in Swagger.Nullable_Integer; Cache_Periodstart_Periodsize : in Swagger.Nullable_Integer; Cache_Periodttl : in Swagger.Nullable_Integer; Cache_Periodsize : in Swagger.Nullable_Integer; Time_Periodlimit : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Datastore_Op_Impl_Social_M_S_Resource_Provider_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodzk_Periodtimeout : in Swagger.Nullable_UString; Solr_Periodcommit : in Swagger.Nullable_UString; Cache_Periodon : in Swagger.Nullable_Boolean; Concurrency_Periodlevel : in Swagger.Nullable_Integer; Cache_Periodstart_Periodsize : in Swagger.Nullable_Integer; Cache_Periodttl : in Swagger.Nullable_Integer; Cache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Datastore_Rdb_Impl_Social_R_D_B_Resource_Provider_Factor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodzk_Periodtimeout : in Swagger.Nullable_UString; Solr_Periodcommit : in Swagger.Nullable_UString; Cache_Periodon : in Swagger.Nullable_Boolean; Concurrency_Periodlevel : in Swagger.Nullable_Integer; Cache_Periodstart_Periodsize : in Swagger.Nullable_Integer; Cache_Periodttl : in Swagger.Nullable_Integer; Cache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Learning_Path_Adaptor_F (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Member_Check : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Adaptors_Enablement_Resource_Adaptor_Facto (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Member_Check : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Learningpath_Endpoints_Impl_Enablement_L (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Resource_Endpoints_Impl_Enablement_Resou (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Enablement_Services_Impl_Author_Marker_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Filelibrary_Download_Ge (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Filelibrary_Client_Endpoints_Impl_File_Library_Opera (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Forum_Client_Endpoints_Impl_Forum_Operations_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Forum_Dispatcher_Impl_Flush_Operations (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extension_Periodorder : in Swagger.Nullable_Integer; Flush_Periodforumontopic : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialForumDispatcherImplFlushOperationsInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Group_Client_Impl_Community_Group_Collection_Componen (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Group_Periodlisting_Periodpagination_Periodenable : in Swagger.Nullable_Boolean; Group_Periodlisting_Periodlazyloading_Periodenable : in Swagger.Nullable_Boolean; Page_Periodsize : in Swagger.Nullable_Integer; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Group_Impl_Group_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Wait_Time : in Swagger.Nullable_Integer; Min_Wait_Between_Retries : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialGroupImplGroupServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Handlebars_Guava_Template_Cache_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parameter_Periodguava_Periodcache_Periodenabled : in Swagger.Nullable_Boolean; Parameter_Periodguava_Periodcache_Periodparams : in Swagger.Nullable_UString; Parameter_Periodguava_Periodcache_Periodreload : in Swagger.Nullable_Boolean; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ideation_Client_Endpoints_Impl_Ideation_Operations_S (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Journal_Client_Endpoints_Impl_Journal_Operations_Ser (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_Group_Profile (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Members_Endpoints_Impl_Community_Member_User_Profile_O (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Members_Impl_Community_Member_Group_Profile_Component_F (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Everyone_Limit : in Swagger.Nullable_Integer; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Messaging_Client_Endpoints_Impl_Messaging_Operation (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Message_Periodproperties : in Swagger.UString_Vectors.Vector; Message_Box_Size_Limit : in Swagger.Nullable_Integer; Message_Count_Limit : in Swagger.Nullable_Integer; Notify_Failure : in Swagger.Nullable_Boolean; Failure_Message_From : in Swagger.Nullable_UString; Failure_Template_Path : in Swagger.Nullable_UString; Max_Retries : in Swagger.Nullable_Integer; Min_Wait_Between_Retries : in Swagger.Nullable_Integer; Count_Update_Pool_Size : in Swagger.Nullable_Integer; Inbox_Periodpath : in Swagger.Nullable_UString; Sentitems_Periodpath : in Swagger.Nullable_UString; Support_Attachments : in Swagger.Nullable_Boolean; Support_Group_Messaging : in Swagger.Nullable_Boolean; Max_Total_Recipients : in Swagger.Nullable_Integer; Batch_Size : in Swagger.Nullable_Integer; Max_Total_Attachment_Size : in Swagger.Nullable_Integer; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Allowed_Attachment_Types : in Swagger.UString_Vectors.Vector; Service_Selector : in Swagger.Nullable_UString; Field_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Filter_Group_Social_Componen (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Type_Periodfilters : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_Moderation_Dashboard_Social (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Api_User_Details_Social_Componen (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Moderation_Dashboard_Internal_Impl_Filter_Group_Soci (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Type_Periodfilters : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Mentions_Router (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialNotificationsImplMentionsRouterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Notification_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodunread_Periodnotification_Periodcount : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialNotificationsImplNotificationManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Notifications_Impl_Notifications_Router (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialNotificationsImplNotificationsRouterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Qna_Client_Endpoints_Impl_Qna_Forum_Operations_Servic (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_I (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodreporting_Periodanalytics_Periodpolling_Periodimporter_Periodinterval : in Swagger.Nullable_Integer; Cq_Periodsocial_Periodreporting_Periodanalytics_Periodpolling_Periodimporter_Periodpage_Size : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Analytics_Report_M (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Report_Periodfetch_Perioddelay : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Reporting_Analytics_Services_Impl_Site_Trend_Report_S (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodconsole_Periodanalytics_Periodsites_Periodmapping : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Review_Client_Endpoints_Impl_Review_Operations_Servi (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Attachment_Type_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Scf_Core_Operations_Impl_Social_Operations_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Scf_Endpoints_Impl_Default_Social_Get_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Scoring_Impl_Scoring_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialScoringImplScoringEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Serviceusers_Internal_Impl_Service_User_Wrapper_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Fallback : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Site_Endpoints_Impl_Site_Operation_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Field_Whitelist : in Swagger.UString_Vectors.Vector; Site_Path_Filters : in Swagger.UString_Vectors.Vector; Site_Package_Group : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Site_Impl_Analytics_Component_Configuration_Service_Im (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsocial_Periodconsole_Periodanalytics_Periodcomponents : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Site_Impl_Site_Configurator_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Components_Using_Tags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSiteImplSiteConfiguratorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Srp_Impl_Social_Solr_Connector (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Srp_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSrpImplSocialSolrConnectorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_Diff_Changes_Observer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Agent_Name : in Swagger.Nullable_UString; Diff_Path : in Swagger.Nullable_UString; Property_Names : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSyncImplDiffChangesObserverInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_Group_Sync_Listener_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Nodetypes : in Swagger.UString_Vectors.Vector; Ignorableprops : in Swagger.UString_Vectors.Vector; Ignorablenodes : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Distfolders : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialSyncImplGroupSyncListenerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_Publisher_Sync_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Active_Run_Modes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSyncImplPublisherSyncServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Sync_Impl_User_Sync_Listener_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Nodetypes : in Swagger.UString_Vectors.Vector; Ignorableprops : in Swagger.UString_Vectors.Vector; Ignorablenodes : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Distfolders : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialSyncImplUserSyncListenerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Translation_Impl_Translation_Service_Config_Manager (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Translate_Periodlanguage : in Swagger.Nullable_UString; Translate_Perioddisplay : in Swagger.Nullable_UString; Translate_Periodattribution : in Swagger.Nullable_Boolean; Translate_Periodcaching : in Swagger.Nullable_UString; Translate_Periodsmart_Periodrendering : in Swagger.Nullable_UString; Translate_Periodcaching_Periodduration : in Swagger.Nullable_UString; Translate_Periodsession_Periodsave_Periodinterval : in Swagger.Nullable_UString; Translate_Periodsession_Periodsave_Periodbatch_Limit : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Translation_Impl_U_G_C_Language_Detector (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.Nullable_UString; Event_Periodfilter : in Swagger.Nullable_UString; Translate_Periodlistener_Periodtype : in Swagger.UString_Vectors.Vector; Translate_Periodproperty_Periodlist : in Swagger.UString_Vectors.Vector; Pool_Size : in Swagger.Nullable_Integer; Max_Pool_Size : in Swagger.Nullable_Integer; Queue_Size : in Swagger.Nullable_Integer; Keep_Alive_Time : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialTranslationImplUGCLanguageDetectorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Dispatcher_Impl_Flush_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Thread_Pool_Size : in Swagger.Nullable_Integer; Delay_Time : in Swagger.Nullable_Integer; Worker_Sleep_Time : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Aysnc_Reverse_Replicator_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pool_Size : in Swagger.Nullable_Integer; Max_Pool_Size : in Swagger.Nullable_Integer; Queue_Size : in Swagger.Nullable_Integer; Keep_Alive_Time : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Publisher_Configuration_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Primary_Publisher : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Impl_Social_Utils_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Legacy_Cloud_U_G_C_Path_Mapping : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialUgcbaseImplSocialUtilsImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Auto_Moderation_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Automoderation_Periodsequence : in Swagger.UString_Vectors.Vector; Automoderation_Periodonfailurestop : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Moderation_Impl_Sentiment_Process (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Watchwords_Periodpositive : in Swagger.UString_Vectors.Vector; Watchwords_Periodnegative : in Swagger.UString_Vectors.Vector; Watchwords_Periodpath : in Swagger.Nullable_UString; Sentiment_Periodpath : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialUgcbaseModerationImplSentimentProcessInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Default_Attachment_Type_Blackli (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Baseline_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_Ugcbase_Security_Impl_Safer_Sling_Post_Validator_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Binary_Periodparameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Modifier_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Typehint_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resourcetype_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_User_Endpoints_Impl_Users_Group_From_Publish_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Social_User_Impl_Transport_Http_To_Publisher (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable : in Swagger.Nullable_Boolean; Agent_Periodconfiguration : in Swagger.UString_Vectors.Vector; Context_Periodpath : in Swagger.Nullable_UString; Disabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Enabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqSocialUserImplTransportHttpToPublisherInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Ui_Wcm_Commons_Internal_Servlets_Rte_R_T_E_Filter_Servlet_Fact (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Content_Cleanup (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Delete_Periodpath_Periodregexps : in Swagger.UString_Vectors.Vector; Delete_Periodsql2_Periodquery : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Upgrades_Cleanup_Impl_Upgrade_Install_Folder_Cleanup (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Delete_Periodname_Periodregexps : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Delete_Config_Provider_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Threshold : in Swagger.Nullable_Integer; Job_Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Job_Clean_Up_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Job_Periodpurge_Periodthreshold : in Swagger.Nullable_Integer; Job_Periodpurge_Periodmax_Periodjobs : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Move_Config_Provider_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Threshold : in Swagger.Nullable_Integer; Job_Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Jobs_Async_Impl_Async_Page_Move_Config_Provider_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Threshold : in Swagger.Nullable_Integer; Job_Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Launches_Impl_Launches_Event_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Launches_Periodeventhandler_Periodthreadpool_Periodmaxsize : in Swagger.Nullable_Integer; Launches_Periodeventhandler_Periodthreadpool_Periodpriority : in Swagger.Nullable_UString; Launches_Periodeventhandler_Periodupdatelastmodification : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeCqWcmLaunchesImplLaunchesEventHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Mobile_Qrcode_Servlet_Q_R_Code_Image_Generator (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodqrcode_Periodservlet_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Style_Internal_Component_Style_Info_Cache_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Size : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Cq_Wcm_Translation_Impl_Translation_Platform_Configuration_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sync_Translation_State_Periodscheduling_Format : in Swagger.Nullable_UString; Scheduling_Repeat_Translation_Periodscheduling_Format : in Swagger.Nullable_UString; Sync_Translation_State_Periodlock_Timeout_In_Minutes : in Swagger.Nullable_UString; Export_Periodformat : in Swagger.Nullable_UString; Result : out .Models.ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Fd_Fp_Config_Forms_Portal_Draftsand_Submission_Config_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Portal_Periodoutboxes : in Swagger.UString_Vectors.Vector; Draft_Perioddata_Periodservice : in Swagger.Nullable_UString; Draft_Periodmetadata_Periodservice : in Swagger.Nullable_UString; Submit_Perioddata_Periodservice : in Swagger.Nullable_UString; Submit_Periodmetadata_Periodservice : in Swagger.Nullable_UString; Pending_Sign_Perioddata_Periodservice : in Swagger.Nullable_UString; Pending_Sign_Periodmetadata_Periodservice : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Fd_Fp_Config_Forms_Portal_Scheduler_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Formportal_Periodinterval : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFdFpConfigFormsPortalSchedulerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Forms_Common_Service_Impl_Default_Data_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Alloweddata_File_Locations : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeFormsCommonServiceImplDefaultDataProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Forms_Common_Service_Impl_Forms_Common_Configuration_Service_Imp (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Temp_Storage_Config : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Forms_Common_Servlet_Temp_Clean_Up_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Duration for _Temporary _Storage : in Swagger.Nullable_UString; Duration for _Anonymous _Storage : in Swagger.Nullable_UString; Result : out .Models.ComAdobeFormsCommonServletTempCleanUpTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Acp_Platform_Platform_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Periodlimit : in Swagger.Nullable_Integer; File_Periodtype_Periodextension_Periodmap : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteAcpPlatformPlatformServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Activitystreams_Impl_Activity_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Aggregate_Periodrelationships : in Swagger.UString_Vectors.Vector; Aggregate_Perioddescend_Periodvirtual : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteActivitystreamsImplActivityManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Analyzer_Base_System_Status_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAnalyzerBaseSystemStatusServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Analyzer_Scripts_Compile_All_Scripts_Compiler_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Apicontroller_Filter_Resolver_Hook_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodcq_Periodcdn_Periodcdn_Rewriter : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcloud_Config_Periodcomponents : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcloud_Config_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcloud_Config_Periodui : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodeditor : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodprojects_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodprojects_Periodwcm_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodui_Periodcommons : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcom_Periodadobe_Periodcq_Periodwcm_Periodstyle : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Activitymap_Integration : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Contexthub_Commons : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Dtm : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Healthcheck : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Multisite_Targeting : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Pre_Upgrade_Cleanup : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Product_Info_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Rest_Sites : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodcq_Security_Hc : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddam_Periodcq_Dam_Svg_Handler : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddam_Periodcq_Scene7_Imaging : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddtm_Reactor_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Perioddtm_Reactor_Periodui : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodexp_Jspel_Resolver : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodinbox_Periodcq_Inbox : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodjson_Schema_Parser : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmedia_Periodcq_Media_Publishing_Dps_Fp_Core : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmobile_Periodcq_Mobile_Caas : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmobile_Periodcq_Mobile_Index_Builder : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmobile_Periodcq_Mobile_Phonegap_Build : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodmyspell : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsample_Periodwe_Periodretail_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodcom_Periodadobe_Periodcq_Periodscreens_Perioddcc : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodscreens_Periodcom_Periodadobe_Periodcq_Periodscreens_Periodmq_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_As_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Badging_Basic_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Badging_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Calendar_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Content_Fragments_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Enablement_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Graph_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Ideation_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Jcr_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Members_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Ms_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Notifications_Channels_Web : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Notifications_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Rdb_Provider : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Scf_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Scoring_Basic_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Scoring_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Serviceusers_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Srp_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodcq_Periodsocial_Periodcq_Social_Ugcbase_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Perioddam_Periodcq_Dam_Cfm_Impl : in Swagger.Nullable_UString; Com_Periodadobe_Periodforms_Periodfoundation_Forms_Foundation_Base : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodapicontroller : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodasset_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodauth_Periodsso : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodbundles_Periodhc_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcompat_Router : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodconf : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodconf_Periodui_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcors : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrx_Explorer : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrxde_Lite : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodconfig : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodextension : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodfile : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcrypto_Periodjcr : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodcsrf : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Perioddistribution_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Perioddropwizard_Periodmetrics : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodfrags_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodgibson : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodinfocollector : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodinstaller_Periodfactory_Periodpackages : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjobs_Periodasync : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodmaintenance_Periodoak : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodmonitoring_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodqueries : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodreplication_Periodhc_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodrepository_Periodchecker : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodrepository_Periodhc_Periodimpl : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodrest_Periodassets : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodsecurity_Periodui : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodstartup : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodtagsoup : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodtaskmanagement_Periodcore : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodtaskmanagement_Periodworkflow : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodui_Periodclientlibs_Periodcompiler_Periodless : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodui_Periodclientlibs_Periodprocessor_Periodgcc : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodwebconsole_Periodplugins : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodworkflow_Periodconsole : in Swagger.Nullable_UString; Com_Periodadobe_Periodxmp_Periodworker_Periodfiles_Periodnative_Periodfragment_Periodlinux : in Swagger.Nullable_UString; Com_Periodadobe_Periodxmp_Periodworker_Periodfiles_Periodnative_Periodfragment_Periodmacosx : in Swagger.Nullable_UString; Com_Periodadobe_Periodxmp_Periodworker_Periodfiles_Periodnative_Periodfragment_Periodwin : in Swagger.Nullable_UString; Com_Periodday_Periodcommons_Periodosgi_Periodwrapper_Periodsimple_Jndi : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Authhandler : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Compat_Configupdate : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Licensebranding : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Notifcation_Impl : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Replication_Audit : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodcq_Search_Ext : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_Annotation_Print : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_Asset_Usage : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_S7dam : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Periodcq_Dam_Similaritysearch : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Perioddam_Perioddam_Webdav_Support : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodpre_Upgrade_Tasks : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodreplication_Periodextensions : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodwcm_Periodcq_Msm_Core : in Swagger.Nullable_UString; Com_Periodday_Periodcq_Periodwcm_Periodcq_Wcm_Translation : in Swagger.Nullable_UString; Day_Commons_Jrawio : in Swagger.Nullable_UString; Org_Periodapache_Periodaries_Periodjmx_Periodwhiteboard : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodsslfilter : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodorg_Periodapache_Periodfelix_Periodthreaddump : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodds : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodevent : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodmemoryusage : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodwebconsole_Periodplugins_Periodpackageadmin : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Auth_Ldap : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Segment_Tar : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Solr_Osgi : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodbundleresource_Periodimpl : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodfsclassloader : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodwebconsole : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddatasource : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddiscovery_Periodbase : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddiscovery_Periodoak : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddiscovery_Periodsupport : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddistribution_Periodapi : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Perioddistribution_Periodcore : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodextensions_Periodwebconsolesecurityprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhc_Periodwebconsole : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodinstaller_Periodconsole : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodinstaller_Periodprovider_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodinstaller_Periodprovider_Periodjcr : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodjcr_Perioddavex : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodjcr_Periodresourcesecurity : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodjmx_Periodprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodlaunchpad_Periodinstaller : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodmodels_Periodimpl : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodrepoinit_Periodparser : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodresource_Periodinventory : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodresourceresolver : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodjavascript : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodjst : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodsightly_Periodjs_Periodprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodscripting_Periodsightly_Periodmodels_Periodprovider : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodsecurity : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodservlets_Periodcompat : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodservlets_Periodget : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodstartupfilter_Perioddisabler : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodtracer : in Swagger.Nullable_UString; We_Periodretail_Periodclient_Periodapp_Periodcore : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteApicontrollerFilterResolverHookFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Cert_Impl_Client_Cert_Auth_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteAuthCertImplClientCertAuthHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Configid : in Swagger.Nullable_UString; Scope : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_External_User_Id_Mapping_Provider_Extension (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Access_Token_Request_Customizer_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auth_Periodims_Periodclient_Periodsecret : in Swagger.Nullable_UString; Customizer_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Instance_Credentials_Validator (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_I_M_S_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodauthorization_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodprofile_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodextended_Perioddetails_Periodurls : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodims_Periodvalidate_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodsession_Periodproperty : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodservice_Periodtoken_Periodclient_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodservice_Periodtoken_Periodclient_Periodsecret : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodims_Periodservice_Periodtoken : in Swagger.Nullable_UString; Ims_Periodorg_Periodref : in Swagger.Nullable_UString; Ims_Periodgroup_Periodmapping : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodims_Periodonly_Periodlicense_Periodgroup : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAuthImsImplIMSProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Ims_Impl_Ims_Config_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodconfigmanager_Periodims_Periodconfigid : in Swagger.Nullable_UString; Ims_Periodowning_Entity : in Swagger.Nullable_UString; Aem_Periodinstance_Id : in Swagger.Nullable_UString; Ims_Periodservice_Code : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthImsImplImsConfigProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Accesstoken_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodtitle : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Perioddefault_Periodclaims : in Swagger.UString_Vectors.Vector; Auth_Periodtoken_Periodprovider_Periodendpoint : in Swagger.Nullable_UString; Auth_Periodaccess_Periodtoken_Periodrequest : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodkeypair_Periodalias : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Auth_Periodtoken_Periodprovider_Periodso_Periodtimeout : in Swagger.Nullable_Integer; Auth_Periodtoken_Periodprovider_Periodclient_Periodid : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodscope : in Swagger.Nullable_UString; Auth_Periodtoken_Periodprovider_Periodreuse_Periodaccess_Periodtoken : in Swagger.Nullable_Boolean; Auth_Periodtoken_Periodprovider_Periodrelaxed_Periodssl : in Swagger.Nullable_Boolean; Token_Periodrequest_Periodcustomizer_Periodtype : in Swagger.Nullable_UString; Auth_Periodtoken_Periodvalidator_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthAccesstokenProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Bearer_Authentication_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Oauth_Periodclient_Ids_Periodallowed : in Swagger.UString_Vectors.Vector; Auth_Periodbearer_Periodsync_Periodims : in Swagger.Nullable_Boolean; Auth_Periodtoken_Request_Parameter : in Swagger.Nullable_UString; Oauth_Periodbearer_Periodconfigid : in Swagger.Nullable_UString; Oauth_Periodjwt_Periodsupport : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Default_Token_Validator_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auth_Periodtoken_Periodvalidator_Periodtype : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Facebook_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplFacebookProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Github_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgithub_Periodauthorization_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgithub_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgithub_Periodprofile_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplGithubProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Granite_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodauthorization_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodtoken_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodprofile_Periodurl : in Swagger.Nullable_UString; Oauth_Periodprovider_Periodgranite_Periodextended_Perioddetails_Periodurls : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplGraniteProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodcookie_Periodlogin_Periodtimeout : in Swagger.Nullable_UString; Oauth_Periodcookie_Periodmax_Periodage : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Helper_Provider_Config_Manager_Internal (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodcookie_Periodlogin_Periodtimeout : in Swagger.Nullable_UString; Oauth_Periodcookie_Periodmax_Periodage : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_O_Auth_Authentication_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Impl_Twitter_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodprovider_Periodid : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthOauthImplTwitterProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Oauth_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodconfig_Periodid : in Swagger.Nullable_UString; Oauth_Periodclient_Periodid : in Swagger.Nullable_UString; Oauth_Periodclient_Periodsecret : in Swagger.Nullable_UString; Oauth_Periodscope : in Swagger.UString_Vectors.Vector; Oauth_Periodconfig_Periodprovider_Periodid : in Swagger.Nullable_UString; Oauth_Periodcreate_Periodusers : in Swagger.Nullable_Boolean; Oauth_Perioduserid_Periodproperty : in Swagger.Nullable_UString; Force_Periodstrict_Periodusername_Periodmatching : in Swagger.Nullable_Boolean; Oauth_Periodencode_Perioduserids : in Swagger.Nullable_Boolean; Oauth_Periodhash_Perioduserids : in Swagger.Nullable_Boolean; Oauth_Periodcall_Back_Url : in Swagger.Nullable_UString; Oauth_Periodaccess_Periodtoken_Periodpersist : in Swagger.Nullable_Boolean; Oauth_Periodaccess_Periodtoken_Periodpersist_Periodcookie : in Swagger.Nullable_Boolean; Oauth_Periodcsrf_Periodstate_Periodprotection : in Swagger.Nullable_Boolean; Oauth_Periodredirect_Periodrequest_Periodparams : in Swagger.Nullable_Boolean; Oauth_Periodconfig_Periodsiblings_Periodallow : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteAuthOauthProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Requirement_Impl_Default_Requirement_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Supported_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Saml_Saml_Authentication_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Idp_Url : in Swagger.Nullable_UString; Idp_Cert_Alias : in Swagger.Nullable_UString; Idp_Http_Redirect : in Swagger.Nullable_Boolean; Service_Provider_Entity_Id : in Swagger.Nullable_UString; Assertion_Consumer_Service_U_R_L : in Swagger.Nullable_UString; Sp_Private_Key_Alias : in Swagger.Nullable_UString; Key_Store_Password : in Swagger.Nullable_UString; Default_Redirect_Url : in Swagger.Nullable_UString; User_I_D_Attribute : in Swagger.Nullable_UString; Use_Encryption : in Swagger.Nullable_Boolean; Create_User : in Swagger.Nullable_Boolean; User_Intermediate_Path : in Swagger.Nullable_UString; Add_Group_Memberships : in Swagger.Nullable_Boolean; Group_Membership_Attribute : in Swagger.Nullable_UString; Default_Groups : in Swagger.UString_Vectors.Vector; Name_Id_Format : in Swagger.Nullable_UString; Synchronize_Attributes : in Swagger.UString_Vectors.Vector; Handle_Logout : in Swagger.Nullable_Boolean; Logout_Url : in Swagger.Nullable_UString; Clock_Tolerance : in Swagger.Nullable_Integer; Digest_Method : in Swagger.Nullable_UString; Signature_Method : in Swagger.Nullable_UString; Identity_Sync_Type : in Swagger.Nullable_UString; Idp_Identifier : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthSamlSamlAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Auth_Sso_Impl_Sso_Authentication_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Jaas_Periodranking : in Swagger.Nullable_Integer; Headers : in Swagger.UString_Vectors.Vector; Cookies : in Swagger.UString_Vectors.Vector; Parameters : in Swagger.UString_Vectors.Vector; Usermap : in Swagger.UString_Vectors.Vector; Format : in Swagger.Nullable_UString; Trusted_Credentials_Attribute : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Code_Cache_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Minimum_Periodcode_Periodcache_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Crxde_Support_Bundle_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Dav_Ex_Bundle_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Inactive_Bundles_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Ignored_Periodbundles : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Jobs_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Max_Periodqueued_Periodjobs : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteBundlesHcImplJobsHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Get_Servlet_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Java_Script_Handler_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Jsp_Script_Handler_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Sling_Referrer_Filter_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Bundles_Hc_Impl_Web_Dav_Bundle_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Comments_Internal_Comment_Replication_Content_Filter_Fac (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Replicate_Periodcomment_Periodresource_Types : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Compatrouter_Impl_Compat_Switching_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Compatgroups : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Compatrouter_Impl_Routing_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Id : in Swagger.Nullable_UString; Compat_Path : in Swagger.Nullable_UString; New_Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteCompatrouterImplRoutingConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Compatrouter_Impl_Switch_Mapping_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Group : in Swagger.Nullable_UString; Ids : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteCompatrouterImplSwitchMappingConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Conf_Impl_Runtime_Aware_Configuration_Resource_Resolving (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Fallback_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Contexthub_Impl_Context_Hub_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodcontexthub_Periodsilent_Mode : in Swagger.Nullable_Boolean; Com_Periodadobe_Periodgranite_Periodcontexthub_Periodshow_Ui : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteContexthubImplContextHubImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Cors_Impl_C_O_R_S_Policy_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Alloworigin : in Swagger.UString_Vectors.Vector; Alloworiginregexp : in Swagger.UString_Vectors.Vector; Allowedpaths : in Swagger.UString_Vectors.Vector; Exposedheaders : in Swagger.UString_Vectors.Vector; Maxage : in Swagger.Nullable_Integer; Supportedheaders : in Swagger.UString_Vectors.Vector; Supportedmethods : in Swagger.UString_Vectors.Vector; Supportscredentials : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteCorsImplCORSPolicyImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filter_Periodmethods : in Swagger.UString_Vectors.Vector; Filter_Periodenable_Periodsafe_Perioduser_Periodagents : in Swagger.Nullable_Boolean; Filter_Periodsafe_Perioduser_Periodagents : in Swagger.UString_Vectors.Vector; Filter_Periodexcluded_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteCsrfImplCSRFFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Csrf_Impl_C_S_R_F_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Csrf_Periodtoken_Periodexpires_Periodin : in Swagger.Nullable_Integer; Sling_Periodauth_Periodrequirements : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteCsrfImplCSRFServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Crypto_Distribution_Transport_Se (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Encrypted_Password : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Changes_Observer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Agent_Name : in Swagger.Nullable_UString; Diff_Path : in Swagger.Nullable_UString; Observed_Path : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Property_Names : in Swagger.Nullable_UString; Distribution_Delay : in Swagger.Nullable_Integer; Service_User_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Diff_Diff_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Diff_Path : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Service_User_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Distribution_To_Replication_Even (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Importer_Periodname : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Replication_Adapters_Replicat (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Name : in Swagger.Nullable_UString; Forward_Periodrequests : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Replication_Distribution_Trans (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forward_Periodrequests : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteDistributionCoreImplReplicationDistributionTransInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Distribution_Core_Impl_Transport_Access_Token_Distribu (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; User_Id : in Swagger.Nullable_UString; Access_Token_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Frags_Impl_Check_Http_Header_Flag (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Feature_Periodname : in Swagger.Nullable_UString; Feature_Perioddescription : in Swagger.Nullable_UString; Http_Periodheader_Periodname : in Swagger.Nullable_UString; Http_Periodheader_Periodvaluepattern : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteFragsImplCheckHttpHeaderFlagInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Frags_Impl_Random_Feature (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Feature_Periodname : in Swagger.Nullable_UString; Feature_Perioddescription : in Swagger.Nullable_UString; Active_Periodpercentage : in Swagger.Nullable_UString; Cookie_Periodname : in Swagger.Nullable_UString; Cookie_Periodmax_Age : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteFragsImplRandomFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Httpcache_File_File_Cache_Store (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodhttpcache_Periodfile_Perioddocument_Root : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodhttpcache_Periodfile_Periodinclude_Host : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteHttpcacheFileFileCacheStoreInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Httpcache_Impl_Outer_Cache_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodhttpcache_Periodurl_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteHttpcacheImplOuterCacheFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_I18n_Impl_Bundle_Pseudo_Translations (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pseudo_Periodpatterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteI18nImplBundlePseudoTranslationsInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_I18n_Impl_Preferences_Locale_Resolver_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Security_Periodpreferences_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Infocollector_Info_Collector (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodinfocollector_Periodinclude_Thread_Dumps : in Swagger.Nullable_Boolean; Granite_Periodinfocollector_Periodinclude_Heap_Dump : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteInfocollectorInfoCollectorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Jetty_Ssl_Internal_Granite_Ssl_Connector_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodport : in Swagger.Nullable_Integer; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodkeystore_Perioduser : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodkeystore_Periodpassword : in Swagger.Nullable_UString; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodciphersuites_Periodexcluded : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodciphersuites_Periodincluded : in Swagger.UString_Vectors.Vector; Com_Periodadobe_Periodgranite_Periodjetty_Periodssl_Periodclient_Periodcertificate : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_License_Impl_License_Check_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Check_Internval : in Swagger.Nullable_Integer; Exclude_Ids : in Swagger.UString_Vectors.Vector; Encrypt_Ping : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteLicenseImplLicenseCheckFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Logging_Impl_Log_Analyser_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Messages_Periodqueue_Periodsize : in Swagger.Nullable_Integer; Logger_Periodconfig : in Swagger.UString_Vectors.Vector; Messages_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteLoggingImplLogAnalyserImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Logging_Impl_Log_Error_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteLoggingImplLogErrorHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Data_Store_Garbage_Collection_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodmaintenance_Periodmandatory : in Swagger.Nullable_Boolean; Job_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Lucene_Binaries_Cleanup_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Maintenance_Crx_Impl_Revision_Cleanup_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Full_Periodgc_Perioddays : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Monitoring_Impl_Script_Config_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Script_Periodfilename : in Swagger.Nullable_UString; Script_Perioddisplay : in Swagger.Nullable_UString; Script_Periodpath : in Swagger.Nullable_UString; Script_Periodplatform : in Swagger.UString_Vectors.Vector; Interval : in Swagger.Nullable_Integer; Jmxdomain : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteMonitoringImplScriptConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Auth_Impl_O_Auth2_Server_Authentication_Han (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Jaas_Periodranking : in Swagger.Nullable_Integer; Oauth_Periodoffline_Periodvalidation : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_Access_Token_Cleanup_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Client_Revocation_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodclient_Periodrevocation_Periodactive : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Revocation_Endpoint_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Oauth_Periodrevocation_Periodactive : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Endpoint_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodissuer : in Swagger.Nullable_UString; Oauth_Periodaccess_Periodtoken_Periodexpires_Periodin : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodservlet_Periodpattern : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Oauth_Server_Impl_O_Auth2_Token_Revocation_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Oauth_Periodtoken_Periodrevocation_Periodactive : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Configurator (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodtransporter : in Swagger.Nullable_UString; Offloading_Periodcleanup_Periodpayload : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplOffloadingConfiguratorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Cloner (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodjobcloner_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplOffloadingJobClonerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Offloading_Job_Offloader (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodoffloader_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplOffloadingJobOffloaderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Agent_Manager (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Offloading_Periodagentmanager_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Offloading_Impl_Transporter_Offloading_Default_Transpo (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodtransport_Periodagent_To_Worker_Periodprefix : in Swagger.Nullable_UString; Default_Periodtransport_Periodagent_To_Master_Periodprefix : in Swagger.Nullable_UString; Default_Periodtransport_Periodinput_Periodpackage : in Swagger.Nullable_UString; Default_Periodtransport_Periodoutput_Periodpackage : in Swagger.Nullable_UString; Default_Periodtransport_Periodreplication_Periodsynchronous : in Swagger.Nullable_Boolean; Default_Periodtransport_Periodcontentpackage : in Swagger.Nullable_Boolean; Offloading_Periodtransporter_Perioddefault_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Omnisearch_Impl_Core_Omni_Search_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Omnisearch_Periodsuggestion_Periodrequiretext_Periodmin : in Swagger.Nullable_Integer; Omnisearch_Periodsuggestion_Periodspellcheck_Periodrequire : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Optout_Impl_Opt_Out_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Optout_Periodcookies : in Swagger.UString_Vectors.Vector; Optout_Periodheaders : in Swagger.UString_Vectors.Vector; Optout_Periodwhitelist_Periodcookies : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteOptoutImplOptOutServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Async_Index_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Indexing_Periodcritical_Periodthreshold : in Swagger.Nullable_Integer; Indexing_Periodwarn_Periodthreshold : in Swagger.Nullable_Integer; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Large_Index_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_Periodindex_Periodcritical_Periodthreshold : in Swagger.Nullable_Integer; Large_Periodindex_Periodwarn_Periodthreshold : in Swagger.Nullable_Integer; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Queries_Status_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Query_Health_Check_Metrics (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Get_Period : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Queries_Impl_Hc_Query_Limits_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Replication_Hc_Impl_Replication_Queue_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Number_Periodof_Periodretries_Periodallowed : in Swagger.Nullable_Integer; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Replication_Hc_Impl_Replication_Transport_Users_Health_C (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Authorizable_Node_Name_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Content_Sling_Sling_Content_Health_C (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Exclude_Periodsearch_Periodpath : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Continuous_R_G_C_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Default_Access_User_Profile_Health_Che (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Default_Logins_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Account_Periodlogins : in Swagger.UString_Vectors.Vector; Console_Periodlogins : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Disk_Space_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Disk_Periodspace_Periodwarn_Periodthreshold : in Swagger.Nullable_Integer; Disk_Periodspace_Perioderror_Periodthreshold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Hc_Impl_Observation_Queue_Length_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Impl_Commit_Stats_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Interval_Seconds : in Swagger.Nullable_Integer; Commits_Per_Interval_Threshold : in Swagger.Nullable_Integer; Max_Location_Length : in Swagger.Nullable_Integer; Max_Details_Shown : in Swagger.Nullable_Integer; Min_Details_Percentage : in Swagger.Nullable_Integer; Thread_Matchers : in Swagger.UString_Vectors.Vector; Max_Greedy_Depth : in Swagger.Nullable_Integer; Greedy_Stack_Matchers : in Swagger.Nullable_UString; Stack_Filters : in Swagger.UString_Vectors.Vector; Stack_Matchers : in Swagger.UString_Vectors.Vector; Stack_Categorizers : in Swagger.UString_Vectors.Vector; Stack_Shorteners : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryImplCommitStatsConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Repository_Service_User_Configuration (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Serviceusers_Periodsimple_Subject_Population : in Swagger.Nullable_Boolean; Serviceusers_Periodlist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRepositoryServiceUserConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Requests_Logging_Impl_Hc_Requests_Status_Health_Check_Im (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Resourcestatus_Impl_Composite_Status_Type (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Types : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteResourcestatusImplCompositeStatusTypeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Resourcestatus_Impl_Status_Resource_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroot : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteResourcestatusImplStatusResourceProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Rest_Assets_Impl_Asset_Content_Disposition_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mime_Periodallow_Empty : in Swagger.Nullable_Boolean; Mime_Periodallowed : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Rest_Impl_Api_Endpoint_Resource_Provider_Factory_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Rest_Impl_Servlet_Default_G_E_T_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodlimit : in Swagger.Nullable_Integer; Use_Periodabsolute_Perioduri : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteRestImplServletDefaultGETServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Security_User_Ui_Internal_Servlets_S_S_L_Configuration_S (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Security_User_User_Properties_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapter_Periodcondition : in Swagger.Nullable_UString; Granite_Perioduserproperties_Periodnodetypes : in Swagger.UString_Vectors.Vector; Granite_Perioduserproperties_Periodresourcetypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteSecurityUserUserPropertiesServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Socialgraph_Impl_Social_Graph_Factory_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Group2member_Periodrelationship_Periodoutgoing : in Swagger.Nullable_UString; Group2member_Periodexcluded_Periodoutgoing : in Swagger.UString_Vectors.Vector; Group2member_Periodrelationship_Periodincoming : in Swagger.Nullable_UString; Group2member_Periodexcluded_Periodincoming : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_System_Monitoring_Impl_System_Stats_M_Bean_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Jmx_Periodobjectname : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Adapter_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapter_Periodcondition : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Jcr_Task_Archive_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Archiving_Periodenabled : in Swagger.Nullable_Boolean; Scheduler_Periodexpression : in Swagger.Nullable_UString; Archive_Periodsince_Perioddays_Periodcompleted : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Purge_Task_Purge_Maintenance_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Purge_Completed : in Swagger.Nullable_Boolean; Completed_Age : in Swagger.Nullable_Integer; Purge_Active : in Swagger.Nullable_Boolean; Active_Age : in Swagger.Nullable_Integer; Save_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Taskmanagement_Impl_Service_Task_Manager_Adapter_Factor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapter_Periodcondition : in Swagger.Nullable_UString; Taskmanager_Periodadmingroups : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Threaddump_Thread_Dump_Collector (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodrun_On : in Swagger.Nullable_UString; Granite_Periodthreaddump_Periodenabled : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Perioddumps_Per_File : in Swagger.Nullable_Integer; Granite_Periodthreaddump_Periodenable_Gzip_Compression : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Periodenable_Directories_Compression : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Periodenable_J_Stack : in Swagger.Nullable_Boolean; Granite_Periodthreaddump_Periodmax_Backup_Days : in Swagger.Nullable_Integer; Granite_Periodthreaddump_Periodbackup_Clean_Trigger : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteThreaddumpThreadDumpCollectorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Translation_Connector_Msft_Core_Impl_Microsoft_Transl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Translation_Factory : in Swagger.Nullable_UString; Default_Connector_Label : in Swagger.Nullable_UString; Default_Connector_Attribution : in Swagger.Nullable_UString; Default_Connector_Workspace_Id : in Swagger.Nullable_UString; Default_Connector_Subscription_Key : in Swagger.Nullable_UString; Language_Map_Location : in Swagger.Nullable_UString; Category_Map_Location : in Swagger.Nullable_UString; Retry_Attempts : in Swagger.Nullable_Integer; Timeout_Count : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Translation_Core_Impl_Translation_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Connector_Name : in Swagger.Nullable_UString; Default_Category : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteTranslationCoreImplTranslationManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Ui_Clientlibs_Impl_Html_Library_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodtiming : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug_Periodinit_Periodjs : in Swagger.Nullable_UString; Htmllibmanager_Periodminify : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug : in Swagger.Nullable_Boolean; Htmllibmanager_Periodgzip : in Swagger.Nullable_Boolean; Htmllibmanager_Periodmax_Data_Uri_Size : in Swagger.Nullable_Integer; Htmllibmanager_Periodmaxage : in Swagger.Nullable_Integer; Htmllibmanager_Periodforce_C_Q_Url_Info : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddefaultthemename : in Swagger.Nullable_UString; Htmllibmanager_Perioddefaultuserthemename : in Swagger.Nullable_UString; Htmllibmanager_Periodclientmanager : in Swagger.Nullable_UString; Htmllibmanager_Periodpath_Periodlist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodexcluded_Periodpath_Periodlist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodprocessor_Periodjs : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodprocessor_Periodcss : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodlongcache_Periodpatterns : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodlongcache_Periodformat : in Swagger.Nullable_UString; Htmllibmanager_Perioduse_File_System_Output_Cache : in Swagger.Nullable_Boolean; Htmllibmanager_Periodfile_System_Output_Cache_Location : in Swagger.Nullable_UString; Htmllibmanager_Perioddisable_Periodreplacement : in Swagger.UString_Vectors.Vector; Result : out .Models.ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Console_Frags_Workflow_Withdraw_Feature (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Console_Publish_Workflow_Publish_Event_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodworkflow_Period_Workflow_Publish_Event_Service_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Jcr_Workflow_Bucket_Manager (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Bucket_Size : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Job_External_Process_Job_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodtimeout : in Swagger.Nullable_Integer; Max_Periodtimeout : in Swagger.Nullable_Integer; Default_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Job_Job_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.UString_Vectors.Vector; Allow_Periodself_Periodprocess_Periodtermination : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowCoreJobJobHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Offloading_Workflow_Offloading_Job_Consum (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Payload_Map_Cache (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Get_System_Workflow_Models : in Swagger.UString_Vectors.Vector; Get_Package_Root_Path : in Swagger.Nullable_UString; Result : out .Models.ComAdobeGraniteWorkflowCorePayloadMapCacheInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Payloadmap_Payload_Move_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Payload_Periodmove_Periodwhite_Periodlist : in Swagger.UString_Vectors.Vector; Payload_Periodmove_Periodhandle_Periodfrom_Periodworkflow_Periodprocess : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Workflow_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodworkflow_Periodconfig_Periodworkflow_Periodpackages_Periodroot_Periodpath : in Swagger.UString_Vectors.Vector; Cq_Periodworkflow_Periodconfig_Periodworkflow_Periodprocess_Periodlegacy_Periodmode : in Swagger.Nullable_Boolean; Cq_Periodworkflow_Periodconfig_Periodallow_Periodlocking : in Swagger.Nullable_Boolean; Result : out .Models.ComAdobeGraniteWorkflowCoreWorkflowConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Core_Workflow_Session_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Periodworkflowinbox_Periodsort_Periodproperty_Name : in Swagger.Nullable_UString; Granite_Periodworkflowinbox_Periodsort_Periodorder : in Swagger.Nullable_UString; Cq_Periodworkflow_Periodjob_Periodretry : in Swagger.Nullable_Integer; Cq_Periodworkflow_Periodsuperuser : in Swagger.UString_Vectors.Vector; Granite_Periodworkflow_Periodinbox_Query_Size : in Swagger.Nullable_Integer; Granite_Periodworkflow_Periodadmin_User_Group_Filter : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodenforce_Workitem_Assignee_Permissions : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodenforce_Workflow_Initiator_Permissions : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodinject_Tenant_Id_In_Job_Topics : in Swagger.Nullable_Boolean; Granite_Periodworkflow_Periodmax_Purge_Save_Threshold : in Swagger.Nullable_Integer; Granite_Periodworkflow_Periodmax_Purge_Query_Count : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Granite_Workflow_Purge_Scheduler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduledpurge_Periodname : in Swagger.Nullable_UString; Scheduledpurge_Periodworkflow_Status : in Swagger.Nullable_UString; Scheduledpurge_Periodmodel_Ids : in Swagger.UString_Vectors.Vector; Scheduledpurge_Perioddaysold : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeGraniteWorkflowPurgeSchedulerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Octopus_Ncomm_Bootstrap (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Connections : in Swagger.Nullable_Integer; Max_Requests : in Swagger.Nullable_Integer; Request_Timeout : in Swagger.Nullable_Integer; Request_Retries : in Swagger.Nullable_Integer; Launch_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComAdobeOctopusNcommBootstrapInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Social_Integrations_Livefyre_User_Pingforpull_Impl_Ping_Pull_S (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Communities_Periodintegration_Periodlivefyre_Periodsling_Periodevent_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Adobe_Xmp_Worker_Files_Ncomm_X_M_P_Files_N_Comm (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Connections : in Swagger.Nullable_UString; Max_Requests : in Swagger.Nullable_UString; Request_Timeout : in Swagger.Nullable_UString; Log_Dir : in Swagger.Nullable_UString; Result : out .Models.ComAdobeXmpWorkerFilesNcommXMPFilesNCommInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Commons_Datasource_Jdbcpool_Jdbc_Pool_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jdbc_Perioddriver_Periodclass : in Swagger.Nullable_UString; Jdbc_Periodconnection_Perioduri : in Swagger.Nullable_UString; Jdbc_Periodusername : in Swagger.Nullable_UString; Jdbc_Periodpassword : in Swagger.Nullable_UString; Jdbc_Periodvalidation_Periodquery : in Swagger.Nullable_UString; Default_Periodreadonly : in Swagger.Nullable_Boolean; Default_Periodautocommit : in Swagger.Nullable_Boolean; Pool_Periodsize : in Swagger.Nullable_Integer; Pool_Periodmax_Periodwait_Periodmsec : in Swagger.Nullable_Integer; Datasource_Periodname : in Swagger.Nullable_UString; Datasource_Periodsvc_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Commons_Httpclient (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Proxy_Periodenabled : in Swagger.Nullable_Boolean; Proxy_Periodhost : in Swagger.Nullable_UString; Proxy_Perioduser : in Swagger.Nullable_UString; Proxy_Periodpassword : in Swagger.Nullable_UString; Proxy_Periodntlm_Periodhost : in Swagger.Nullable_UString; Proxy_Periodntlm_Perioddomain : in Swagger.Nullable_UString; Proxy_Periodexceptions : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCommonsHttpclientInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Impl_Store_Properties_Change_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodstore_Periodlistener_Periodadditional_Store_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqAnalyticsImplStorePropertiesChangeListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Exporter_Classifications_Exporte (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Allowed_Periodpaths : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodsaint_Periodexporter_Periodpagesize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Importer_Report_Importer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Report_Periodfetch_Periodattempts : in Swagger.Nullable_Integer; Report_Periodfetch_Perioddelay : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsSitecatalystImplImporterReportImporterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Adapter_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodadapterfactory_Periodcontextstores : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Sitecatalyst_Impl_Sitecatalyst_Http_Client_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodsitecatalyst_Periodservice_Perioddatacenter_Periodurl : in Swagger.UString_Vectors.Vector; Devhostnamepatterns : in Swagger.UString_Vectors.Vector; Connection_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Account_Options_Updater (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodaccountoptionsupdater_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Delete_Author_Activity_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Perioddeleteauthoractivitylistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Push_Author_Campaign_Page_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodpushauthorcampaignpagelistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Segment_Importer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodsegmentimporter_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAnalyticsTestandtargetImplSegmentImporterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Service_Web_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Endpoint_Uri : in Swagger.Nullable_UString; Connection_Timeout : in Swagger.Nullable_Integer; Socket_Timeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Servlets_Admin_Server_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Testandtarget_Periodendpoint_Periodurl : in Swagger.Nullable_UString; Result : out .Models.ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Analytics_Testandtarget_Impl_Testandtarget_Http_Client_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodanalytics_Periodtestandtarget_Periodapi_Periodurl : in Swagger.Nullable_UString; Cq_Periodanalytics_Periodtestandtarget_Periodtimeout : in Swagger.Nullable_Integer; Cq_Periodanalytics_Periodtestandtarget_Periodsockettimeout : in Swagger.Nullable_Integer; Cq_Periodanalytics_Periodtestandtarget_Periodrecommendations_Periodurl_Periodreplace : in Swagger.Nullable_UString; Cq_Periodanalytics_Periodtestandtarget_Periodrecommendations_Periodurl_Periodreplacewith : in Swagger.Nullable_UString; Result : out .Models.ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Auth_Impl_Cug_Cug_Support_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cug_Periodexempted_Periodprincipals : in Swagger.UString_Vectors.Vector; Cug_Periodenabled : in Swagger.Nullable_Boolean; Cug_Periodprincipals_Periodregex : in Swagger.Nullable_UString; Cug_Periodprincipals_Periodreplacement : in Swagger.Nullable_UString; Result : out .Models.ComDayCqAuthImplCugCugSupportImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Auth_Impl_Login_Selector_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Auth_Periodloginselector_Periodmappings : in Swagger.UString_Vectors.Vector; Auth_Periodloginselector_Periodchangepw_Periodmappings : in Swagger.UString_Vectors.Vector; Auth_Periodloginselector_Perioddefaultloginpage : in Swagger.Nullable_UString; Auth_Periodloginselector_Perioddefaultchangepwpage : in Swagger.Nullable_UString; Auth_Periodloginselector_Periodhandle : in Swagger.UString_Vectors.Vector; Auth_Periodloginselector_Periodhandle_Periodall_Periodextensions : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqAuthImplLoginSelectorHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Commons_Impl_Externalizer_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Externalizer_Perioddomains : in Swagger.UString_Vectors.Vector; Externalizer_Periodhost : in Swagger.Nullable_UString; Externalizer_Periodcontextpath : in Swagger.Nullable_UString; Externalizer_Periodencodedpath : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqCommonsImplExternalizerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Commons_Servlets_Root_Mapping_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Rootmapping_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComDayCqCommonsServletsRootMappingServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Code_Upgrade_Execution_Condition_Checke (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Codeupgradetasks : in Swagger.UString_Vectors.Vector; Codeupgradetaskfilters : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Upgrade_Task_Ignore_List (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Upgrade_Task_Ignore_List : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Compat_Codeupgrade_Impl_Version_Range_Task_Ignorelist (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Effective_Bundle_List_Path : in Swagger.Nullable_UString; Result : out .Models.ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Contentsync_Impl_Content_Sync_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Contentsync_Periodfallback_Periodauthorizable : in Swagger.Nullable_UString; Contentsync_Periodfallback_Periodupdateuser : in Swagger.Nullable_UString; Result : out .Models.ComDayCqContentsyncImplContentSyncManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Commons_Handler_Standard_Image_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_File_Threshold : in Swagger.Nullable_Integer; Large_Comment_Threshold : in Swagger.Nullable_Integer; Cq_Perioddam_Periodenable_Periodext_Periodmeta_Periodextraction : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCommonsHandlerStandardImageHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Commons_Metadata_Xmp_Filter_Black_White (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Xmp_Periodfilter_Periodapply_Whitelist : in Swagger.Nullable_Boolean; Xmp_Periodfilter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Xmp_Periodfilter_Periodapply_Blacklist : in Swagger.Nullable_Boolean; Xmp_Periodfilter_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCommonsMetadataXmpFilterBlackWhiteInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Commons_Util_Impl_Asset_Cache_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_Periodfile_Periodmin : in Swagger.Nullable_Integer; Cache_Periodapply : in Swagger.Nullable_Boolean; Mime_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCommonsUtilImplAssetCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Annotation_Pdf_Annotation_Pdf_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodwidth : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodheight : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodpadding_Periodhorizontal : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Perioddocument_Periodpadding_Periodvertical : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodsize : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodcolor : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodfamily : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodfont_Periodlight : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodmargin_Text_Image : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodmin_Image_Height : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodwidth : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodcolor_Periodapproved : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodcolor_Periodrejected : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodreview_Status_Periodcolor_Periodchanges_Requested : in Swagger.Nullable_UString; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodannotation_Marker_Periodwidth : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodannotation_Periodpdf_Periodasset_Periodminheight : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Asset_Move_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplAssetMoveListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Assethome_Asset_Home_Page_Configuration (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Assetlinkshare_Adhoc_Asset_Share_Proxy_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodadhoc_Periodasset_Periodshare_Periodprezip_Periodmaxcontentsize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Cache_C_Q_Buffered_Image_Cache (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodimage_Periodcache_Periodmax_Periodmemory : in Swagger.Nullable_Integer; Cq_Perioddam_Periodimage_Periodcache_Periodmax_Periodage : in Swagger.Nullable_Integer; Cq_Perioddam_Periodimage_Periodcache_Periodmax_Perioddimension : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplCacheCQBufferedImageCacheInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Change_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Changeeventlistener_Periodobserved_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplDamChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Event_Purge_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Max_Saved_Activities : in Swagger.Nullable_Integer; Save_Interval : in Swagger.Nullable_Integer; Enable_Activity_Purge : in Swagger.Nullable_Boolean; Event_Types : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplDamEventPurgeServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Dam_Event_Recorder_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Event_Periodqueue_Periodlength : in Swagger.Nullable_Integer; Eventrecorder_Periodenabled : in Swagger.Nullable_Boolean; Eventrecorder_Periodblacklist : in Swagger.UString_Vectors.Vector; Eventrecorder_Periodeventtypes : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplDamEventRecorderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Event_Dam_Event_Audit_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplEventDamEventAuditListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Expiry_Notification_Job_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodexpiry_Periodnotification_Periodscheduler_Periodistimebased : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodexpiry_Periodnotification_Periodscheduler_Periodtimebased_Periodrule : in Swagger.Nullable_UString; Cq_Perioddam_Periodexpiry_Periodnotification_Periodscheduler_Periodperiod_Periodrule : in Swagger.Nullable_Integer; Send_Email : in Swagger.Nullable_Boolean; Asset_Expired_Limit : in Swagger.Nullable_Integer; Prior_Notification_Seconds : in Swagger.Nullable_Integer; Cq_Perioddam_Periodexpiry_Periodnotification_Periodurl_Periodprotocol : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplExpiryNotificationJobImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Foldermetadataschema_Folder_Metadata_Schema_Feat (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Is_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Gfx_Commons_Gfx_Renderer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Skip_Periodbufferedcache : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplGfxCommonsGfxRendererInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_E_P_S_Format_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mimetype : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplHandlerEPSFormatHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Indesign_Format_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mimetype : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplHandlerIndesignFormatHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Jpeg_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodenable_Periodext_Periodmeta_Periodextraction : in Swagger.Nullable_Boolean; Large_File_Threshold : in Swagger.Nullable_Integer; Large_Comment_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplHandlerJpegHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Handler_Xmp_N_Comm_X_M_P_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Xmphandler_Periodcq_Periodformats : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Index_Update_Monitor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jmx_Periodobjectname : in Swagger.Nullable_UString; Property_Periodmeasure_Periodenabled : in Swagger.Nullable_Boolean; Property_Periodname : in Swagger.Nullable_UString; Property_Periodmax_Periodwait_Periodms : in Swagger.Nullable_Integer; Property_Periodmax_Periodrate : in Swagger.Number; Fulltext_Periodmeasure_Periodenabled : in Swagger.Nullable_Boolean; Fulltext_Periodname : in Swagger.Nullable_UString; Fulltext_Periodmax_Periodwait_Periodms : in Swagger.Nullable_Integer; Fulltext_Periodmax_Periodrate : in Swagger.Number; Result : out .Models.ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Migration_M_Bean_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jmx_Periodobjectname : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplJmxAssetMigrationMBeanImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jmx_Asset_Update_Monitor_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jmx_Periodobjectname : in Swagger.Nullable_UString; Active : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplJmxAssetUpdateMonitorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataexport_Async_Metadata_Export_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Operation : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Jobs_Metadataimport_Async_Metadata_Import_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Operation : in Swagger.Nullable_UString; Operation_Icon : in Swagger.Nullable_UString; Topic_Name : in Swagger.Nullable_UString; Email_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Lightbox_Lightbox_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodenable_Periodanonymous : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplLightboxLightboxServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Metadata_Editor_Select_Component_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Granite_Data : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Mime_Type_Asset_Upload_Restriction_Helper (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodallow_Periodall_Periodmime : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodallowed_Periodasset_Periodmimes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Mime_Type_Dam_Mime_Type_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Perioddetect_Periodasset_Periodmime_Periodfrom_Periodcontent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Missing_Metadata_Notification_Job (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodscheduler_Periodistimebased : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodscheduler_Periodtimebased_Periodrule : in Swagger.Nullable_UString; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodscheduler_Periodperiod_Periodrule : in Swagger.Nullable_Integer; Cq_Perioddam_Periodmissingmetadata_Periodnotification_Periodrecipient : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplMissingMetadataNotificationJobInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Process_Send_Transient_Workflow_Completed_Email_Pr (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Notify on _Complete : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Process_Text_Extraction_Process (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mime_Types : in Swagger.UString_Vectors.Vector; Max_Extract : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplProcessTextExtractionProcessInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Rendition_Maker_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Xmp_Periodpropagate : in Swagger.Nullable_Boolean; Xmp_Periodexcludes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplRenditionMakerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Reports_Report_Export_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Batch_Size : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplReportsReportExportServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Reports_Report_Purge_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Max_Saved_Reports : in Swagger.Nullable_Integer; Time_Duration : in Swagger.Nullable_Integer; Enable_Report_Purge : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplReportsReportPurgeServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Download_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletAssetDownloadServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_Status_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodstatus_Periodmaxassets : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletAssetStatusServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Asset_X_M_P_Search_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodindesign_Periodmaxassets : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletAssetXMPSearchServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Batch_Metadata_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodmetadata_Periodasset_Perioddefault : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodmetadata_Periodcollection_Perioddefault : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodmetadata_Periodmaxresources : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletBatchMetadataServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Binary_Provider_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Perioddrm_Periodenable : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletBinaryProviderServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Collection_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollection_Periodproperties : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollection_Periodmaxcollections : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletCollectionServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Collections_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollections_Periodproperties : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodbatch_Periodcollections_Periodlimit : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamCoreImplServletCollectionsServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Companion_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; More _Info : in Swagger.Nullable_UString; Slashmnt_Slashoverlay_Slashdam_Slashgui_Slashcontent_Slashassets_Slashmoreinfo_Periodhtml_Slash_Dollar_Left_Curly_Bracketpath_Right_Curly_Bracket : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplServletCompanionServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Create_Asset_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Detect_Duplicate : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletCreateAssetServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Dam_Content_Disposition_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodmime_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodempty_Periodmime : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletDamContentDispositionFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Guid_Lookup_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodcore_Periodguidlookupfilter_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletGuidLookupFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Health_Check_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodsync_Periodworkflow_Periodid : in Swagger.Nullable_UString; Cq_Perioddam_Periodsync_Periodfolder_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreImplServletHealthCheckServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Metadata_Get_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Sling_Periodservlet_Periodextensions : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplServletMetadataGetServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Multiple_License_Accept_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Perioddrm_Periodenable : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletMultipleLicenseAcceptServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Servlet_Resource_Collection_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Download_Periodconfig : in Swagger.Nullable_UString; View_Periodselector : in Swagger.Nullable_UString; Send_Email : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreImplServletResourceCollectionServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Ui_Preview_Folder_Preview_Updater_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Create_Preview_Enabled : in Swagger.Nullable_Boolean; Update_Preview_Enabled : in Swagger.Nullable_Boolean; Queue_Size : in Swagger.Nullable_Integer; Folder_Preview_Rendition_Regex : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Impl_Unzip_Unzip_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodconfig_Periodunzip_Periodmaxuncompressedsize : in Swagger.Nullable_Integer; Cq_Perioddam_Periodconfig_Periodunzip_Periodencoding : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamCoreImplUnzipUnzipConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Process_Exif_Tool_Extract_Metadata_Process (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodenable_Periodsha1 : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreProcessExifToolExtractMetadataProcessInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Process_Extract_Metadata_Process (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodenable_Periodsha1 : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamCoreProcessExtractMetadataProcessInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Core_Process_Metadata_Processor_Process (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodenable_Periodsha1 : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodmetadata_Periodxssprotected_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamCoreProcessMetadataProcessorProcessInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Ffmpeg_Locator_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Executable_Periodsearchpath : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamHandlerFfmpegLocatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Gibson_Fontmanager_Impl_Font_Manager_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Fontmgr_Periodsystem_Periodfont_Perioddir : in Swagger.UString_Vectors.Vector; Fontmgr_Periodadobe_Periodfont_Perioddir : in Swagger.Nullable_UString; Fontmgr_Periodcustomer_Periodfont_Perioddir : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Standard_Pdf_Pdf_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Raster_Periodannotation : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamHandlerStandardPdfPdfHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Standard_Ps_Post_Script_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Raster_Periodannotation : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamHandlerStandardPsPostScriptHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Handler_Standard_Psd_Psd_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Large_File_Threshold : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamHandlerStandardPsdPsdHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Ids_Impl_I_D_S_Job_Processor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Periodmultisession : in Swagger.Nullable_Boolean; Ids_Periodcc_Periodenable : in Swagger.Nullable_Boolean; Enable_Periodretry : in Swagger.Nullable_Boolean; Enable_Periodretry_Periodscripterror : in Swagger.Nullable_Boolean; Externalizer_Perioddomain_Periodcqhost : in Swagger.Nullable_UString; Externalizer_Perioddomain_Periodhttp : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamIdsImplIDSJobProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Ids_Impl_I_D_S_Pool_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Perioderrors_Periodto_Periodblacklist : in Swagger.Nullable_Integer; Retry_Periodinterval_Periodto_Periodwhitelist : in Swagger.Nullable_Integer; Connect_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Process_Periodlabel : in Swagger.Nullable_UString; Connection_Perioduse_Periodmax : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamIdsImplIDSPoolManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Indd_Impl_Handler_Indesign_X_M_P_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Extract_Periodpages : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamInddImplHandlerIndesignXMPHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Indd_Impl_Servlet_Snippet_Creation_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Snippetcreation_Periodmaxcollections : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamInddImplServletSnippetCreationServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Indd_Process_I_N_D_D_Media_Extract_Process (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Cq_Perioddam_Periodindd_Periodpages_Periodregex : in Swagger.Nullable_UString; Ids_Periodjob_Perioddecoupled : in Swagger.Nullable_Boolean; Ids_Periodjob_Periodworkflow_Periodmodel : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamInddProcessINDDMediaExtractProcessInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Data_Handler_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Batch_Periodcommit_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Performance_Internal_Asset_Performance_Report_Sync_Job (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Pim_Impl_Sourcing_Upload_Process_Product_Assets_Upload_Pro (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Delete_Periodzip_Periodfile : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_S7dam_Dynamic_Media_Config_Even (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periods7dam_Perioddynamicmediaconfigeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Analytics_Impl_Site_Catalyst_Report_Runner (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Create_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodpost_Periodoperation : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonPostServletsSetCreateHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Post_Servlets_Set_Modify_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodpost_Periodoperation : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonPostServletsSetModifyHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Process_Video_Thumbnail_Download_Process (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Process_Periodlabel : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_S7dam_Dam_Change_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periods7dam_Perioddamchangeeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamS7damCommonS7damDamChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Servlets_S7dam_Product_Info_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamS7damCommonServletsS7damProductInfoServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_S7dam_Common_Video_Impl_Video_Proxy_Client_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodmultipartupload_Periodminsize_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodmultipartupload_Periodpartsize_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodmultipartupload_Periodnumthread_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodhttp_Periodreadtimeout_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodhttp_Periodconnectiontimeout_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Periodhttp_Periodmaxretrycount_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periods7dam_Periodvideoproxyclientservice_Perioduploadprogress_Periodinterval_Periodname : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_A_P_I_Client_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Periodapiclient_Periodrecordsperpage_Periodnofilter_Periodname : in Swagger.Nullable_Integer; Cq_Perioddam_Periodscene7_Periodapiclient_Periodrecordsperpage_Periodwithfilter_Periodname : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamScene7ImplScene7APIClientImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Asset_Mime_Type_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Periodassetmimetypeservice_Periodmapping : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Configuration_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Periodconfigurationeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamScene7ImplScene7ConfigurationEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Dam_Change_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Perioddamchangeeventlistener_Periodenabled : in Swagger.Nullable_Boolean; Cq_Perioddam_Periodscene7_Perioddamchangeeventlistener_Periodobserved_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqDamScene7ImplScene7DamChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Flash_Templates_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scene7_Flash_Templates_Periodrti : in Swagger.Nullable_UString; Scene7_Flash_Templates_Periodrsi : in Swagger.Nullable_UString; Scene7_Flash_Templates_Periodrb : in Swagger.Nullable_UString; Scene7_Flash_Templates_Periodrurl : in Swagger.Nullable_UString; Scene7_Flash_Template_Periodurl_Format_Parameter : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Scene7_Impl_Scene7_Upload_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Perioddam_Periodscene7_Perioduploadservice_Periodactivejobtimeout_Periodlabel : in Swagger.Nullable_Integer; Cq_Perioddam_Periodscene7_Perioduploadservice_Periodconnectionmaxperroute_Periodlabel : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamScene7ImplScene7UploadServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Stock_Integration_Impl_Cache_Stock_Cache_Configuration_Ser (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Get_Cache_Expiration_Unit : in Swagger.Nullable_UString; Get_Cache_Expiration_Value : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Stock_Integration_Impl_Configuration_Stock_Configuration (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Locale : in Swagger.Nullable_UString; Ims_Config : in Swagger.Nullable_UString; Result : out .Models.ComDayCqDamStockIntegrationImplConfigurationStockConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Dam_Video_Impl_Servlet_Video_Test_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqDamVideoImplServletVideoTestServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Extwidget_Servlets_Image_Sprite_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Width : in Swagger.Nullable_Integer; Max_Height : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqExtwidgetServletsImageSpriteServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Image_Internal_Font_Font_Helper (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Fontpath : in Swagger.UString_Vectors.Vector; Oversampling_Factor : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqImageInternalFontFontHelperInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Jcrclustersupport_Cluster_Start_Level_Controller (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cluster_Periodlevel_Periodenable : in Swagger.Nullable_Boolean; Cluster_Periodmaster_Periodlevel : in Swagger.Nullable_Integer; Cluster_Periodslave_Periodlevel : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqJcrclustersupportClusterStartLevelControllerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Default_Mail_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Smtp_Periodhost : in Swagger.Nullable_UString; Smtp_Periodport : in Swagger.Nullable_Integer; Smtp_Perioduser : in Swagger.Nullable_UString; Smtp_Periodpassword : in Swagger.Nullable_UString; From_Periodaddress : in Swagger.Nullable_UString; Smtp_Periodssl : in Swagger.Nullable_Boolean; Smtp_Periodstarttls : in Swagger.Nullable_Boolean; Debug_Periodemail : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqMailerDefaultMailServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Impl_Cq_Mailing_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodrecipient_Periodcount : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMailerImplCqMailingServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Impl_Email_Cq_Email_Template_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mailer_Periodemail_Periodcharset : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMailerImplEmailCqEmailTemplateFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mailer_Impl_Email_Cq_Retriever_Template_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mailer_Periodemail_Periodembed : in Swagger.Nullable_Boolean; Mailer_Periodemail_Periodcharset : in Swagger.Nullable_UString; Mailer_Periodemail_Periodretriever_User_I_D : in Swagger.Nullable_UString; Mailer_Periodemail_Periodretriever_User_P_W_D : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMailerImplEmailCqRetrieverTemplateFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Campaign_Impl_Integration_Config_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Aem_Periodmcm_Periodcampaign_Periodform_Constraints : in Swagger.UString_Vectors.Vector; Aem_Periodmcm_Periodcampaign_Periodpublic_Url : in Swagger.Nullable_UString; Aem_Periodmcm_Periodcampaign_Periodrelaxed_S_S_L : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqMcmCampaignImplIntegrationConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Campaign_Importer_Personalized_Text_Handler_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Core_Newsletter_Newsletter_Email_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; From_Periodaddress : in Swagger.Nullable_UString; Sender_Periodhost : in Swagger.Nullable_UString; Max_Periodbounce_Periodcount : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Impl_M_C_M_Configuration (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Experience_Periodindirection : in Swagger.UString_Vectors.Vector; Touchpoint_Periodindirection : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqMcmImplMCMConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Click_Through_Componen (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Graphical_Click_Throug (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Cta_Lead_Form_C_T_A_Component (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_M_Box_Experience_Tag_Ha (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Mcm_Landingpage_Parser_Taghandlers_Mbox_Target_Component_Tag_H (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Notification_Impl_Notification_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Result : out .Models.ComDayCqNotificationImplNotificationServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Personalization_Impl_Servlets_Targeting_Configuration_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forcelocation : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqPersonalizationImplServletsTargetingConfigurationServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Polling_Importer_Impl_Managed_Poll_Config_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Id : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Reference : in Swagger.Nullable_Boolean; Interval : in Swagger.Nullable_Integer; Expression : in Swagger.Nullable_UString; Source : in Swagger.Nullable_UString; Target : in Swagger.Nullable_UString; Login : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Result : out .Models.ComDayCqPollingImporterImplManagedPollConfigImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Polling_Importer_Impl_Managed_Polling_Importer_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Importer_Perioduser : in Swagger.Nullable_UString; Result : out .Models.ComDayCqPollingImporterImplManagedPollingImporterImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Polling_Importer_Impl_Polling_Importer_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Importer_Periodmin_Periodinterval : in Swagger.Nullable_Integer; Importer_Perioduser : in Swagger.Nullable_UString; Exclude_Periodpaths : in Swagger.UString_Vectors.Vector; Include_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqPollingImporterImplPollingImporterImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Audit_Replication_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationAuditReplicationEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Content_Static_Content_Builder (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Host : in Swagger.Nullable_UString; Port : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationContentStaticContentBuilderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Agent_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodtopics : in Swagger.Nullable_UString; Service_User_Periodtarget : in Swagger.Nullable_UString; Agent_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.ComDayCqReplicationImplAgentManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Content_Durbo_Binary_Less_Content_Builder (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Binary_Periodthreshold : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationImplContentDurboBinaryLessContentBuilderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Content_Durbo_Durbo_Import_Configuration_Prov (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Preserve_Periodhierarchy_Periodnodes : in Swagger.Nullable_Boolean; Ignore_Periodversioning : in Swagger.Nullable_Boolean; Import_Periodacl : in Swagger.Nullable_Boolean; Save_Periodthreshold : in Swagger.Nullable_Integer; Preserve_Perioduser_Periodpaths : in Swagger.Nullable_Boolean; Preserve_Perioduuid : in Swagger.Nullable_Boolean; Preserve_Perioduuid_Periodnodetypes : in Swagger.UString_Vectors.Vector; Preserve_Perioduuid_Periodsubtrees : in Swagger.UString_Vectors.Vector; Auto_Periodcommit : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReplicationImplContentDurboDurboImportConfigurationProvInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Replication_Content_Factory_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Replication_Periodcontent_Perioduse_File_Storage : in Swagger.Nullable_Boolean; Replication_Periodcontent_Periodmax_Commit_Attempts : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationImplReplicationContentFactoryProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Replication_Receiver_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Receiver_Periodtmpfile_Periodthreshold : in Swagger.Nullable_Integer; Receiver_Periodpackages_Perioduse_Periodinstall : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReplicationImplReplicationReceiverImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Replicator_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Distribute_Events : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReplicationImplReplicatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Reverse_Replicator (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReplicationImplReverseReplicatorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Transport_Binary_Less_Transport_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Enabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqReplicationImplTransportBinaryLessTransportHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Replication_Impl_Transport_Http (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Enabled_Periodcipher_Periodsuites : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqReplicationImplTransportHttpInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Reporting_Impl_Cache_Cache_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repcache_Periodenable : in Swagger.Nullable_Boolean; Repcache_Periodttl : in Swagger.Nullable_Integer; Repcache_Periodmax : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqReportingImplCacheCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Reporting_Impl_Config_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repconf_Periodtimezone : in Swagger.Nullable_UString; Repconf_Periodlocale : in Swagger.Nullable_UString; Repconf_Periodsnapshots : in Swagger.Nullable_UString; Repconf_Periodrepdir : in Swagger.Nullable_UString; Repconf_Periodhourofday : in Swagger.Nullable_Integer; Repconf_Periodminofhour : in Swagger.Nullable_Integer; Repconf_Periodmaxrows : in Swagger.Nullable_Integer; Repconf_Periodfakedata : in Swagger.Nullable_Boolean; Repconf_Periodsnapshotuser : in Swagger.Nullable_UString; Repconf_Periodenforcesnapshotuser : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqReportingImplConfigServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Reporting_Impl_R_Log_Analyzer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Request_Periodlog_Periodoutput : in Swagger.Nullable_UString; Result : out .Models.ComDayCqReportingImplRLogAnalyzerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Service_Periodbad_Link_Tolerance_Interval : in Swagger.Nullable_Integer; Service_Periodcheck_Override_Patterns : in Swagger.UString_Vectors.Vector; Service_Periodcache_Broken_Internal_Links : in Swagger.Nullable_Boolean; Service_Periodspecial_Link_Prefix : in Swagger.UString_Vectors.Vector; Service_Periodspecial_Link_Patterns : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkCheckerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Good_Link_Test_Interval : in Swagger.Nullable_Integer; Bad_Link_Test_Interval : in Swagger.Nullable_Integer; Link_Unused_Interval : in Swagger.Nullable_Integer; Connection_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkCheckerTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Checker_Transformer_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Linkcheckertransformer_Perioddisable_Rewriting : in Swagger.Nullable_Boolean; Linkcheckertransformer_Perioddisable_Checking : in Swagger.Nullable_Boolean; Linkcheckertransformer_Periodmap_Cache_Size : in Swagger.Nullable_Integer; Linkcheckertransformer_Periodstrict_Extension_Check : in Swagger.Nullable_Boolean; Linkcheckertransformer_Periodstrip_Htmlt_Extension : in Swagger.Nullable_Boolean; Linkcheckertransformer_Periodrewrite_Elements : in Swagger.UString_Vectors.Vector; Linkcheckertransformer_Periodstrip_Extension_Path_Blacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Linkchecker_Impl_Link_Info_Storage_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodmax_Links_Per_Host : in Swagger.Nullable_Integer; Service_Periodsave_External_Link_References : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Rewriter_Processor_Impl_Html_Parser_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Htmlparser_Periodprocess_Tags : in Swagger.UString_Vectors.Vector; Htmlparser_Periodpreserve_Camel_Case : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqRewriterProcessorImplHtmlParserFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Search_Impl_Builder_Query_Builder_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Excerpt_Periodproperties : in Swagger.UString_Vectors.Vector; Cache_Periodmax_Periodentries : in Swagger.Nullable_Integer; Cache_Periodentry_Periodlifetime : in Swagger.Nullable_Integer; Xpath_Periodunion : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqSearchImplBuilderQueryBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Search_Suggest_Impl_Suggestion_Index_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path_Builder_Periodtarget : in Swagger.Nullable_UString; Suggest_Periodbasepath : in Swagger.Nullable_UString; Result : out .Models.ComDayCqSearchSuggestImplSuggestionIndexManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Searchpromote_Impl_Publish_Search_Promote_Config_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsearchpromote_Periodconfighandler_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Searchpromote_Impl_Search_Promote_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodsearchpromote_Periodconfiguration_Periodserver_Perioduri : in Swagger.Nullable_UString; Cq_Periodsearchpromote_Periodconfiguration_Periodenvironment : in Swagger.Nullable_UString; Connection_Periodtimeout : in Swagger.Nullable_Integer; Socket_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqSearchpromoteImplSearchPromoteServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Security_A_C_L_Setup (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodaclsetup_Periodrules : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqSecurityACLSetupInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Statistics_Impl_Statistics_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodperiod : in Swagger.Nullable_Integer; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Path : in Swagger.Nullable_UString; Workspace : in Swagger.Nullable_UString; Keywords_Path : in Swagger.Nullable_UString; Async_Entries : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqStatisticsImplStatisticsServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Tagging_Impl_Jcr_Tag_Manager_Factory_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Validation_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqTaggingImplJcrTagManagerFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Tagging_Impl_Search_Tag_Predicate_Evaluator (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ignore_Path : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqTaggingImplSearchTagPredicateEvaluatorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Tagging_Impl_Tag_Garbage_Collector (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Result : out .Models.ComDayCqTaggingImplTagGarbageCollectorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Contentsync_Impl_Handler_Pages_Update_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodpagesupdatehandler_Periodimageresourcetypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Contentsync_Impl_Rewriter_Path_Rewriter_Transformer_Factor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodmapping_Periodlinks : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodmapping_Periodclientlibs : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodmapping_Periodimages : in Swagger.UString_Vectors.Vector; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodattribute_Periodpattern : in Swagger.Nullable_UString; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodclientlibrary_Periodpattern : in Swagger.Nullable_UString; Cq_Periodcontentsync_Periodpathrewritertransformer_Periodclientlibrary_Periodreplace : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Authoring_U_I_Mode_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Authoring_U_I_Mode_Service_Perioddefault : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplAuthoringUIModeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Commands_W_C_M_Command_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmcommandservlet_Perioddelete_Whitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplCommandsWCMCommandServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Devicedetection_Device_Identification_Mode_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dim_Perioddefault_Periodmode : in Swagger.Nullable_UString; Dim_Periodappcache_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Page_Event_Audit_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Configured : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplEventPageEventAuditListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Page_Post_Processor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplEventPagePostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Repository_Change_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Paths : in Swagger.UString_Vectors.Vector; Excluded_Paths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplEventRepositoryChangeEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Event_Template_Post_Processor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Paths : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplEventTemplatePostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Language_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Langmgr_Periodlist_Periodpath : in Swagger.Nullable_UString; Langmgr_Periodcountry_Perioddefault : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplLanguageManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Link_Checker_Configuration_Factory_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Link_Periodexpired_Periodprefix : in Swagger.Nullable_UString; Link_Periodexpired_Periodremove : in Swagger.Nullable_Boolean; Link_Periodexpired_Periodsuffix : in Swagger.Nullable_UString; Link_Periodinvalid_Periodprefix : in Swagger.Nullable_UString; Link_Periodinvalid_Periodremove : in Swagger.Nullable_Boolean; Link_Periodinvalid_Periodsuffix : in Swagger.Nullable_UString; Link_Periodpredated_Periodprefix : in Swagger.Nullable_UString; Link_Periodpredated_Periodremove : in Swagger.Nullable_Boolean; Link_Periodpredated_Periodsuffix : in Swagger.Nullable_UString; Link_Periodwcmmodes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Page_Page_Info_Aggregator_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Page_Periodinfo_Periodprovider_Periodproperty_Periodregex_Perioddefault : in Swagger.Nullable_UString; Page_Periodinfo_Periodprovider_Periodproperty_Periodname : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplPagePageInfoAggregatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Page_Page_Manager_Factory_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Illegal_Char_Mapping : in Swagger.Nullable_UString; Page_Sub_Tree_Activation_Check : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplPagePageManagerFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_References_Content_Content_Reference_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Content_Reference_Config_Periodresource_Types : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplReferencesContentContentReferenceConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Asset_View_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dam_Periodshowexpired : in Swagger.Nullable_Boolean; Dam_Periodshowhidden : in Swagger.Nullable_Boolean; Tag_Title_Search : in Swagger.Nullable_Boolean; Guess_Total : in Swagger.Nullable_UString; Dam_Periodexpiry_Property : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Connector_Connector_Vie (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Item_Periodresource_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Contentfinder_Page_View_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Guess_Total : in Swagger.Nullable_UString; Tag_Title_Search : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Find_Replace_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scope : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplServletsFindReplaceServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Reference_Search_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Referencesearchservlet_Periodmax_References_Per_Page : in Swagger.Nullable_Integer; Referencesearchservlet_Periodmax_Pages : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmCoreImplServletsReferenceSearchServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Servlets_Thumbnail_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Workspace : in Swagger.Nullable_UString; Dimensions : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmCoreImplServletsThumbnailServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Utils_Default_Page_Name_Validator (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Non_Valid_Chars : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Variants_Page_Variants_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodexternalizer_Perioddomain : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplVariantsPageVariantsProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Version_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Versionmanager_Periodcreate_Version_On_Activation : in Swagger.Nullable_Boolean; Versionmanager_Periodpurging_Enabled : in Swagger.Nullable_Boolean; Versionmanager_Periodpurge_Paths : in Swagger.UString_Vectors.Vector; Versionmanager_Periodiv_Paths : in Swagger.UString_Vectors.Vector; Versionmanager_Periodmax_Age_Days : in Swagger.Nullable_Integer; Versionmanager_Periodmax_Number_Versions : in Swagger.Nullable_Integer; Versionmanager_Periodmin_Number_Versions : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmCoreImplVersionManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Version_Purge_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Versionpurge_Periodpaths : in Swagger.UString_Vectors.Vector; Versionpurge_Periodrecursive : in Swagger.Nullable_Boolean; Versionpurge_Periodmax_Versions : in Swagger.Nullable_Integer; Versionpurge_Periodmin_Versions : in Swagger.Nullable_Integer; Versionpurge_Periodmax_Age_Days : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmCoreImplVersionPurgeTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_W_C_M_Debug_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmdbgfilter_Periodenabled : in Swagger.Nullable_Boolean; Wcmdbgfilter_Periodjsp_Debug : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplWCMDebugFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_W_C_M_Developer_Mode_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmdevmodefilter_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmCoreImplWCMDeveloperModeFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Impl_Warp_Time_Warp_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filter_Periodorder : in Swagger.Nullable_UString; Filter_Periodscope : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreImplWarpTimeWarpFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Mvt_M_V_T_Statistics_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mvtstatistics_Periodtrackingurl : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreMvtMVTStatisticsImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_Stats_Page_View_Statistics_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pageviewstatistics_Periodtrackingurl : in Swagger.Nullable_UString; Pageviewstatistics_Periodtrackingscript_Periodenabled : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreStatsPageViewStatisticsImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Core_W_C_M_Request_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Wcmfilter_Periodmode : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmCoreWCMRequestFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Design_Package_Importer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extract_Periodfilter : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmDesignimporterDesignPackageImporterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Builder_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filepattern : in Swagger.Nullable_UString; Build_Periodpage_Periodnodes : in Swagger.Nullable_Boolean; Build_Periodclient_Periodlibs : in Swagger.Nullable_Boolean; Build_Periodcanvas_Periodcomponent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmDesignimporterImplCanvasBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Canvas_Page_Delete_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Min_Thread_Pool_Size : in Swagger.Nullable_Integer; Max_Thread_Pool_Size : in Swagger.Nullable_Integer; Result : out .Models.ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Entry_Preprocessor_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Search_Periodpattern : in Swagger.Nullable_UString; Replace_Periodpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterImplEntryPreprocessorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Impl_Mobile_Canvas_Builder_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Filepattern : in Swagger.Nullable_UString; Device_Periodgroups : in Swagger.UString_Vectors.Vector; Build_Periodpage_Periodnodes : in Swagger.Nullable_Boolean; Build_Periodclient_Periodlibs : in Swagger.Nullable_Boolean; Build_Periodcanvas_Periodcomponent : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Canvas_Compone (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Compon (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Default_Tag_Han (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Head_Tag_Handle (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_I_Frame_Tag_Hand (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Image_Componen (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Img_Tag_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Inline_Script_T (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Link_Tag_Handle (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Meta_Tag_Handle (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Non_Script_Tag_H (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Parsys_Compone (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Script_Tag_Hand (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Style_Tag_Handl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Text_Component (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Componen (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Component_Periodresource_Type : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Designimporter_Parser_Taghandlers_Factory_Title_Tag_Handl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Tagpattern : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Chooser_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodname : in Swagger.Nullable_UString; Sling_Periodservlet_Periodresource_Types : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Forms_Periodformchooserservlet_Periodadvansesearch_Periodrequire : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmFoundationFormsImplFormChooserServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Form_Paragraph_Post_Processor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Forms_Periodformparagraphpostprocessor_Periodenabled : in Swagger.Nullable_Boolean; Forms_Periodformparagraphpostprocessor_Periodformresourcetypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Forms_Handling_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name_Periodwhitelist : in Swagger.Nullable_UString; Allow_Periodexpressions : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmFoundationFormsImplFormsHandlingServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Forms_Impl_Mail_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodresource_Types : in Swagger.Nullable_UString; Sling_Periodservlet_Periodselectors : in Swagger.Nullable_UString; Resource_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resource_Periodblacklist : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmFoundationFormsImplMailServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Adaptive_Image_Component_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Adapt_Periodsupported_Periodwidths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationImplAdaptiveImageComponentServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_H_T_T_P_Auth_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Auth_Periodhttp_Periodnologin : in Swagger.Nullable_Boolean; Auth_Periodhttp_Periodrealm : in Swagger.Nullable_UString; Auth_Perioddefault_Periodloginpage : in Swagger.Nullable_UString; Auth_Periodcred_Periodform : in Swagger.UString_Vectors.Vector; Auth_Periodcred_Periodutf8 : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationImplHTTPAuthHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Page_Impressions_Tracker (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodauth_Periodrequirements : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmFoundationImplPageImpressionsTrackerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Impl_Page_Redirect_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Excluded_Periodresource_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationImplPageRedirectServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Security_Impl_Default_Attachment_Type_Blacklist (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Default_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Baseline_Periodattachment_Periodtype_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Foundation_Security_Impl_Safer_Sling_Post_Validator_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Parameter_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Binary_Periodparameter_Periodwhitelist : in Swagger.UString_Vectors.Vector; Modifier_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist : in Swagger.UString_Vectors.Vector; Operation_Periodwhitelist_Periodprefixes : in Swagger.UString_Vectors.Vector; Typehint_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resourcetype_Periodwhitelist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Mobile_Core_Impl_Device_Device_Info_Transformer_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Device_Periodinfo_Periodtransformer_Periodenabled : in Swagger.Nullable_Boolean; Device_Periodinfo_Periodtransformer_Periodcss_Periodstyle : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Mobile_Core_Impl_Redirect_Redirect_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Redirect_Periodenabled : in Swagger.Nullable_Boolean; Redirect_Periodstats_Periodenabled : in Swagger.Nullable_Boolean; Redirect_Periodextensions : in Swagger.UString_Vectors.Vector; Redirect_Periodpaths : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMobileCoreImplRedirectRedirectFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Copy_Action_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Contentcopyaction_Periodorder_Periodstyle : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMsmImplActionsContentCopyActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Delete_Action_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsContentDeleteActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Content_Update_Action_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodignored_Mixin : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsContentUpdateActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Order_Children_Action_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Page_Move_Action_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodimpl_Periodactions_Periodpagemove_Periodprop_Reference_Update : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmMsmImplActionsPageMoveActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_References_Update_Action_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodimpl_Periodaction_Periodreferencesupdate_Periodprop_Update_Nested : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Actions_Version_Copy_Action_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludednodetypes : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedparagraphitems : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodmsm_Periodaction_Periodexcludedprops : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmMsmImplActionsVersionCopyActionFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Live_Relationship_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Liverelationshipmgr_Periodrelationsconfig_Perioddefault : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMsmImplLiveRelationshipManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Rollout_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Rolloutmgr_Periodexcludedprops_Perioddefault : in Swagger.UString_Vectors.Vector; Rolloutmgr_Periodexcludedparagraphprops_Perioddefault : in Swagger.UString_Vectors.Vector; Rolloutmgr_Periodexcludednodetypes_Perioddefault : in Swagger.UString_Vectors.Vector; Rolloutmgr_Periodthreadpool_Periodmaxsize : in Swagger.Nullable_Integer; Rolloutmgr_Periodthreadpool_Periodmaxshutdowntime : in Swagger.Nullable_Integer; Rolloutmgr_Periodthreadpool_Periodpriority : in Swagger.Nullable_UString; Rolloutmgr_Periodcommit_Periodsize : in Swagger.Nullable_Integer; Rolloutmgr_Periodconflicthandling_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWcmMsmImplRolloutManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Msm_Impl_Servlets_Audit_Log_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Auditlogservlet_Perioddefault_Periodevents_Periodcount : in Swagger.Nullable_Integer; Auditlogservlet_Perioddefault_Periodpath : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmMsmImplServletsAuditLogServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Notification_Email_Impl_Email_Channel (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Email_Periodfrom : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmNotificationEmailImplEmailChannelInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Notification_Impl_Notification_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodtopics : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmNotificationImplNotificationManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Scripting_Impl_B_V_P_Manager (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Com_Periodday_Periodcq_Periodwcm_Periodscripting_Periodbvp_Periodscript_Periodengines : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmScriptingImplBVPManagerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Undo_Undo_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodundo_Periodenabled : in Swagger.Nullable_Boolean; Cq_Periodwcm_Periodundo_Periodpath : in Swagger.Nullable_UString; Cq_Periodwcm_Periodundo_Periodvalidity : in Swagger.Nullable_Integer; Cq_Periodwcm_Periodundo_Periodsteps : in Swagger.Nullable_Integer; Cq_Periodwcm_Periodundo_Periodpersistence : in Swagger.Nullable_UString; Cq_Periodwcm_Periodundo_Periodpersistence_Periodmode : in Swagger.Nullable_Boolean; Cq_Periodwcm_Periodundo_Periodmarkermode : in Swagger.Nullable_UString; Cq_Periodwcm_Periodundo_Periodwhitelist : in Swagger.UString_Vectors.Vector; Cq_Periodwcm_Periodundo_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmUndoUndoConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Webservicesupport_Impl_Replication_Event_Listener (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Flush agents : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmWebservicesupportImplReplicationEventListenerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Workflow_Impl_Wcm_Workflow_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Event_Periodfilter : in Swagger.Nullable_UString; Min_Thread_Pool_Size : in Swagger.Nullable_Integer; Max_Thread_Pool_Size : in Swagger.Nullable_Integer; Cq_Periodwcm_Periodworkflow_Periodterminate_Periodon_Periodactivate : in Swagger.Nullable_Boolean; Cq_Periodwcm_Periodworklfow_Periodterminate_Periodexclusion_Periodlist : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCqWcmWorkflowImplWcmWorkflowServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Wcm_Workflow_Impl_Workflow_Package_Info_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Workflowpackageinfoprovider_Periodfilter : in Swagger.UString_Vectors.Vector; Workflowpackageinfoprovider_Periodfilter_Periodrootpath : in Swagger.Nullable_UString; Result : out .Models.ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Widget_Impl_Html_Library_Manager_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodclientmanager : in Swagger.Nullable_UString; Htmllibmanager_Perioddebug : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug_Periodconsole : in Swagger.Nullable_Boolean; Htmllibmanager_Perioddebug_Periodinit_Periodjs : in Swagger.Nullable_UString; Htmllibmanager_Perioddefaultthemename : in Swagger.Nullable_UString; Htmllibmanager_Perioddefaultuserthemename : in Swagger.Nullable_UString; Htmllibmanager_Periodfirebuglite_Periodpath : in Swagger.Nullable_UString; Htmllibmanager_Periodforce_C_Q_Url_Info : in Swagger.Nullable_Boolean; Htmllibmanager_Periodgzip : in Swagger.Nullable_Boolean; Htmllibmanager_Periodmaxage : in Swagger.Nullable_Integer; Htmllibmanager_Periodmax_Data_Uri_Size : in Swagger.Nullable_Integer; Htmllibmanager_Periodminify : in Swagger.Nullable_Boolean; Htmllibmanager_Periodpath_Periodlist : in Swagger.UString_Vectors.Vector; Htmllibmanager_Periodtiming : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWidgetImplHtmlLibraryManagerImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Widget_Impl_Widget_Extension_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extendable_Periodwidgets : in Swagger.UString_Vectors.Vector; Widgetextensionprovider_Perioddebug : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWidgetImplWidgetExtensionProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Workflow_Impl_Email_E_Mail_Notification_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; From_Periodaddress : in Swagger.Nullable_UString; Host_Periodprefix : in Swagger.Nullable_UString; Notify_Periodonabort : in Swagger.Nullable_Boolean; Notify_Periodoncomplete : in Swagger.Nullable_Boolean; Notify_Periodoncontainercomplete : in Swagger.Nullable_Boolean; Notify_Perioduseronly : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWorkflowImplEmailEMailNotificationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Cq_Workflow_Impl_Email_Task_E_Mail_Notification_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Notify_Periodonupdate : in Swagger.Nullable_Boolean; Notify_Periodoncomplete : in Swagger.Nullable_Boolean; Result : out .Models.ComDayCqWorkflowImplEmailTaskEMailNotificationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Crx_Security_Token_Impl_Impl_Token_Authentication_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Token_Periodrequired_Periodattr : in Swagger.Nullable_UString; Token_Periodalternate_Periodurl : in Swagger.Nullable_UString; Token_Periodencapsulated : in Swagger.Nullable_Boolean; Skip_Periodtoken_Periodrefresh : in Swagger.UString_Vectors.Vector; Result : out .Models.ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Com_Day_Crx_Security_Token_Impl_Token_Cleanup_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enable_Periodtoken_Periodcleanup_Periodtask : in Swagger.Nullable_Boolean; Scheduler_Periodexpression : in Swagger.Nullable_UString; Batch_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.ComDayCrxSecurityTokenImplTokenCleanupTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Guide_Localization_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Supported_Locales : in Swagger.UString_Vectors.Vector; Localizable _Properties : in Swagger.UString_Vectors.Vector; Result : out .Models.GuideLocalizationServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Messaging_User_Component_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Priority : in Swagger.Nullable_Integer; Result : out .Models.MessagingUserComponentFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Aries_Jmx_Framework_State_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Attribute_Change_Notification_Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheAriesJmxFrameworkStateConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Eventadmin_Impl_Event_Admin (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Thread_Pool_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Async_To_Sync_Thread_Ratio : in Swagger.Number; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Timeout : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Require_Topic : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Ignore_Timeout : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodeventadmin_Period_Ignore_Topic : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheFelixEventadminImplEventAdminInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Http (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttp_Periodhost : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodenable : in Swagger.Nullable_Boolean; Org_Periodosgi_Periodservice_Periodhttp_Periodport : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodtimeout : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttps_Periodenable : in Swagger.Nullable_Boolean; Org_Periodosgi_Periodservice_Periodhttp_Periodport_Periodsecure : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodclientcertificate : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodcontext_Path : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttp_Periodmbeans : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttp_Periodsession_Periodtimeout : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodthreadpool_Periodmax : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodacceptors : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodselectors : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodheader_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodrequest_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodresponse_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodmax_Form_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodpath_Exclusions : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodciphersuites_Periodexcluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodciphersuites_Periodincluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttp_Periodjetty_Periodsend_Server_Header : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodprotocols_Periodincluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodprotocols_Periodexcluded : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodproxy_Periodload_Periodbalancer_Periodconnection_Periodenable : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodrenegotiate_Allowed : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodsession_Periodcookie_Periodhttp_Only : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodjetty_Periodsession_Periodcookie_Periodsecure : in Swagger.Nullable_Boolean; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Id_Path_Parameter_Name : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Checking_Remote_Session_Id_Encoding : in Swagger.Nullable_Boolean; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Cookie : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Domain : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Session_Path : in Swagger.Nullable_UString; Org_Periodeclipse_Periodjetty_Periodservlet_Period_Max_Age : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodhttp_Periodname : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodjetty_Periodgziphandler_Periodenable : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodmin_Gzip_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodcompression_Level : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodinflate_Buffer_Size : in Swagger.Nullable_Integer; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodsync_Flush : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_User_Agents : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodincluded_Methods : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_Methods : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodincluded_Paths : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_Paths : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodincluded_Mime_Types : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodjetty_Periodgzip_Periodexcluded_Mime_Types : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodfelix_Periodhttp_Periodsession_Periodinvalidate : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttp_Periodsession_Perioduniqueid : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheFelixHttpInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Http_Sslfilter_Ssl_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ssl_Forward_Periodheader : in Swagger.Nullable_UString; Ssl_Forward_Periodvalue : in Swagger.Nullable_UString; Ssl_Forward_Cert_Periodheader : in Swagger.Nullable_UString; Rewrite_Periodabsolute_Periodurls : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheFelixHttpSslfilterSslFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Jaas_Configuration_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodranking : in Swagger.Nullable_Integer; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Jaas_Periodclassname : in Swagger.Nullable_UString; Jaas_Periodoptions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheFelixJaasConfigurationFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Jaas_Configuration_Spi (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jaas_Perioddefault_Realm_Name : in Swagger.Nullable_UString; Jaas_Periodconfig_Provider_Name : in Swagger.Nullable_UString; Jaas_Periodglobal_Config_Policy : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixJaasConfigurationSpiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Scr_Scr_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ds_Periodloglevel : in Swagger.Nullable_Integer; Ds_Periodfactory_Periodenabled : in Swagger.Nullable_Boolean; Ds_Perioddelayed_Periodkeep_Instances : in Swagger.Nullable_Boolean; Ds_Periodlock_Periodtimeout_Periodmilliseconds : in Swagger.Nullable_Integer; Ds_Periodstop_Periodtimeout_Periodmilliseconds : in Swagger.Nullable_Integer; Ds_Periodglobal_Periodextender : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheFelixScrScrServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Components_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Components_Periodlist : in Swagger.UString_Vectors.Vector; P_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplComponentsCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Framework_Start_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Timeout : in Swagger.Nullable_Integer; Target_Periodstart_Periodlevel : in Swagger.Nullable_Integer; Target_Periodstart_Periodlevel_Periodprop_Periodname : in Swagger.Nullable_UString; P_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplFrameworkStartCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Services_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Services_Periodlist : in Swagger.UString_Vectors.Vector; P_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplServicesCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Servlet_System_Alive_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodservlet_Periodpattern : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplServletSystemAliveServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_Impl_Servlet_System_Ready_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodservlet_Periodpattern : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixSystemreadyImplServletSystemReadyServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Systemready_System_Ready_Monitor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Poll_Periodinterval : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheFelixSystemreadySystemReadyMonitorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Webconsole_Internal_Servlet_Osgi_Manager (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Manager_Periodroot : in Swagger.Nullable_UString; Http_Periodservice_Periodfilter : in Swagger.Nullable_UString; Default_Periodrender : in Swagger.Nullable_UString; Realm : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Category : in Swagger.Nullable_UString; Locale : in Swagger.Nullable_UString; Loglevel : in Swagger.Nullable_Integer; Plugins : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixWebconsoleInternalServletOsgiManagerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Webconsole_Plugins_Event_Internal_Plugin_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodsize : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheFelixWebconsolePluginsEventInternalPluginServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Felix_Webconsole_Plugins_Memoryusage_Internal_Memory_Usage_Co (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Felix_Periodmemoryusage_Perioddump_Periodthreshold : in Swagger.Nullable_Integer; Felix_Periodmemoryusage_Perioddump_Periodinterval : in Swagger.Nullable_Integer; Felix_Periodmemoryusage_Perioddump_Periodlocation : in Swagger.Nullable_UString; Result : out .Models.OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Http_Proxyconfigurator (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Proxy_Periodenabled : in Swagger.Nullable_Boolean; Proxy_Periodhost : in Swagger.Nullable_UString; Proxy_Periodport : in Swagger.Nullable_Integer; Proxy_Perioduser : in Swagger.Nullable_UString; Proxy_Periodpassword : in Swagger.Nullable_UString; Proxy_Periodexceptions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheHttpProxyconfiguratorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_Data_Store_Text_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dir : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Blob_Datastore_File_Data_Store (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mongouri : in Swagger.Nullable_UString; Db : in Swagger.Nullable_UString; Socket_Keep_Alive : in Swagger.Nullable_Boolean; Cache : in Swagger.Nullable_Integer; Node_Cache_Percentage : in Swagger.Nullable_Integer; Prev_Doc_Cache_Percentage : in Swagger.Nullable_Integer; Children_Cache_Percentage : in Swagger.Nullable_Integer; Diff_Cache_Percentage : in Swagger.Nullable_Integer; Cache_Segment_Count : in Swagger.Nullable_Integer; Cache_Stack_Move_Distance : in Swagger.Nullable_Integer; Blob_Cache_Size : in Swagger.Nullable_Integer; Persistent_Cache : in Swagger.Nullable_UString; Journal_Cache : in Swagger.Nullable_UString; Custom_Blob_Store : in Swagger.Nullable_Boolean; Journal_G_C_Interval : in Swagger.Nullable_Integer; Journal_G_C_Max_Age : in Swagger.Nullable_Integer; Prefetch_External_Changes : in Swagger.Nullable_Boolean; Role : in Swagger.Nullable_UString; Version_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Version_G_C_Expression : in Swagger.Nullable_UString; Version_G_C_Time_Limit_In_Secs : in Swagger.Nullable_Integer; Blob_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Blob_Track_Snapshot_Interval_In_Secs : in Swagger.Nullable_Integer; Repository_Periodhome : in Swagger.Nullable_UString; Max_Replication_Lag_In_Secs : in Swagger.Nullable_Integer; Document_Store_Type : in Swagger.Nullable_UString; Bundling_Disabled : in Swagger.Nullable_Boolean; Update_Limit : in Swagger.Nullable_Integer; Persistent_Cache_Includes : in Swagger.UString_Vectors.Vector; Lease_Check_Mode : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Document_Node_Store_Service_Pre (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Persistent_Cache_Includes : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Document_Secondary_Secondary_Store_Cac (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Included_Paths : in Swagger.UString_Vectors.Vector; Enable_Async_Observer : in Swagger.Nullable_Boolean; Observer_Queue_Size : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Async_Indexer_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Async_Configs : in Swagger.UString_Vectors.Vector; Lease_Time_Out_Minutes : in Swagger.Nullable_Integer; Failing_Index_Timeout_Seconds : in Swagger.Nullable_Integer; Error_Warn_Interval_Seconds : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Lucene_Lucene_Index_Provider_Serv (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Disabled : in Swagger.Nullable_Boolean; Debug : in Swagger.Nullable_Boolean; Local_Index_Dir : in Swagger.Nullable_UString; Enable_Open_Index_Async : in Swagger.Nullable_Boolean; Thread_Pool_Size : in Swagger.Nullable_Integer; Prefetch_Index_Files : in Swagger.Nullable_Boolean; Extracted_Text_Cache_Size_In_M_B : in Swagger.Nullable_Integer; Extracted_Text_Cache_Expiry_In_Secs : in Swagger.Nullable_Integer; Always_Use_Pre_Extracted_Cache : in Swagger.Nullable_Boolean; Boolean_Clause_Limit : in Swagger.Nullable_Integer; Enable_Hybrid_Indexing : in Swagger.Nullable_Boolean; Hybrid_Queue_Size : in Swagger.Nullable_Integer; Disable_Stored_Index_Definition : in Swagger.Nullable_Boolean; Deleted_Blobs_Collection_Enabled : in Swagger.Nullable_Boolean; Prop_Index_Cleaner_Interval_In_Secs : in Swagger.Nullable_Integer; Enable_Single_Blob_Index_Files : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Embedded_Solr_Server_Co (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodhome_Periodpath : in Swagger.Nullable_UString; Solr_Periodcore_Periodname : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Node_State_Solr_Servers (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Oak_Solr_Configuration (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path_Perioddesc_Periodfield : in Swagger.Nullable_UString; Path_Periodchild_Periodfield : in Swagger.Nullable_UString; Path_Periodparent_Periodfield : in Swagger.Nullable_UString; Path_Periodexact_Periodfield : in Swagger.Nullable_UString; Catch_Periodall_Periodfield : in Swagger.Nullable_UString; Collapsed_Periodpath_Periodfield : in Swagger.Nullable_UString; Path_Perioddepth_Periodfield : in Swagger.Nullable_UString; Commit_Periodpolicy : in Swagger.Nullable_UString; Rows : in Swagger.Nullable_Integer; Path_Periodrestrictions : in Swagger.Nullable_Boolean; Property_Periodrestrictions : in Swagger.Nullable_Boolean; Primarytypes_Periodrestrictions : in Swagger.Nullable_Boolean; Ignored_Periodproperties : in Swagger.UString_Vectors.Vector; Used_Periodproperties : in Swagger.UString_Vectors.Vector; Type_Periodmappings : in Swagger.UString_Vectors.Vector; Property_Periodmappings : in Swagger.UString_Vectors.Vector; Collapse_Periodjcrcontent_Periodnodes : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Remote_Solr_Server_Conf (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Solr_Periodhttp_Periodurl : in Swagger.Nullable_UString; Solr_Periodzk_Periodhost : in Swagger.Nullable_UString; Solr_Periodcollection : in Swagger.Nullable_UString; Solr_Periodsocket_Periodtimeout : in Swagger.Nullable_Integer; Solr_Periodconnection_Periodtimeout : in Swagger.Nullable_Integer; Solr_Periodshards_Periodno : in Swagger.Nullable_Integer; Solr_Periodreplication_Periodfactor : in Swagger.Nullable_Integer; Solr_Periodconf_Perioddir : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Query_Index_Provid (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Periodaggregation : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Index_Solr_Osgi_Solr_Server_Provider_Se (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Server_Periodtype : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Metric_Statistics_Provider_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Plugins_Observation_Change_Collector_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Items : in Swagger.Nullable_Integer; Max_Path_Depth : in Swagger.Nullable_Integer; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Query_Query_Engine_Settings_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Query_Limit_In_Memory : in Swagger.Nullable_Integer; Query_Limit_Reads : in Swagger.Nullable_Integer; Query_Fail_Traversal : in Swagger.Nullable_Boolean; Fast_Query_Size : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Authentication_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodjackrabbit_Periodoak_Periodauthentication_Periodapp_Name : in Swagger.Nullable_UString; Org_Periodapache_Periodjackrabbit_Periodoak_Periodauthentication_Periodconfig_Spi_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Ldap_Impl_Ldap_Identi (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodname : in Swagger.Nullable_UString; Host_Periodname : in Swagger.Nullable_UString; Host_Periodport : in Swagger.Nullable_Integer; Host_Periodssl : in Swagger.Nullable_Boolean; Host_Periodtls : in Swagger.Nullable_Boolean; Host_Periodno_Cert_Check : in Swagger.Nullable_Boolean; Bind_Perioddn : in Swagger.Nullable_UString; Bind_Periodpassword : in Swagger.Nullable_UString; Search_Timeout : in Swagger.Nullable_UString; Admin_Pool_Periodmax_Active : in Swagger.Nullable_Integer; Admin_Pool_Periodlookup_On_Validate : in Swagger.Nullable_Boolean; User_Pool_Periodmax_Active : in Swagger.Nullable_Integer; User_Pool_Periodlookup_On_Validate : in Swagger.Nullable_Boolean; User_Periodbase_D_N : in Swagger.Nullable_UString; User_Periodobjectclass : in Swagger.UString_Vectors.Vector; User_Periodid_Attribute : in Swagger.Nullable_UString; User_Periodextra_Filter : in Swagger.Nullable_UString; User_Periodmake_Dn_Path : in Swagger.Nullable_Boolean; Group_Periodbase_D_N : in Swagger.Nullable_UString; Group_Periodobjectclass : in Swagger.UString_Vectors.Vector; Group_Periodname_Attribute : in Swagger.Nullable_UString; Group_Periodextra_Filter : in Swagger.Nullable_UString; Group_Periodmake_Dn_Path : in Swagger.Nullable_Boolean; Group_Periodmember_Attribute : in Swagger.Nullable_UString; Use_Uid_For_Ext_Id : in Swagger.Nullable_Boolean; Customattributes : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authentication_Token_Token_Configura (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Token_Expiration : in Swagger.Nullable_UString; Token_Length : in Swagger.Nullable_UString; Token_Refresh : in Swagger.Nullable_Boolean; Token_Cleanup_Threshold : in Swagger.Nullable_Integer; Password_Hash_Algorithm : in Swagger.Nullable_UString; Password_Hash_Iterations : in Swagger.Nullable_Integer; Password_Salt_Size : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Authorization_Authorization_Configur (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Permissions_Jr2 : in Swagger.Nullable_UString; Import_Behavior : in Swagger.Nullable_UString; Read_Paths : in Swagger.UString_Vectors.Vector; Administrative_Principals : in Swagger.UString_Vectors.Vector; Configuration_Ranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_Internal_Security_Provider_Registrati (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Required_Service_Pids : in Swagger.UString_Vectors.Vector; Authorization_Composition_Type : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_User_Random_Authorizable_Node_Name (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Length : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Security_User_User_Configuration_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Users_Path : in Swagger.Nullable_UString; Groups_Path : in Swagger.Nullable_UString; System_Relative_Path : in Swagger.Nullable_UString; Default_Depth : in Swagger.Nullable_Integer; Import_Behavior : in Swagger.Nullable_UString; Password_Hash_Algorithm : in Swagger.Nullable_UString; Password_Hash_Iterations : in Swagger.Nullable_Integer; Password_Salt_Size : in Swagger.Nullable_Integer; Omit_Admin_Pw : in Swagger.Nullable_Boolean; Support_Auto_Save : in Swagger.Nullable_Boolean; Password_Max_Age : in Swagger.Nullable_Integer; Initial_Password_Change : in Swagger.Nullable_Boolean; Password_History_Size : in Swagger.Nullable_Integer; Password_Expiry_For_Admin : in Swagger.Nullable_Boolean; Cache_Expiration : in Swagger.Nullable_Integer; Enable_R_F_C7613_Usercase_Mapped_Profile : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSecurityUserUserConfigurationImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Azure_Azure_Segment_Store_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Account_Name : in Swagger.Nullable_UString; Container_Name : in Swagger.Nullable_UString; Access_Key : in Swagger.Nullable_UString; Root_Path : in Swagger.Nullable_UString; Connection_U_R_L : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repository_Periodhome : in Swagger.Nullable_UString; Tarmk_Periodmode : in Swagger.Nullable_UString; Tarmk_Periodsize : in Swagger.Nullable_Integer; Segment_Cache_Periodsize : in Swagger.Nullable_Integer; String_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Cache_Periodsize : in Swagger.Nullable_Integer; String_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Node_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Pause_Compaction : in Swagger.Nullable_Boolean; Compaction_Periodretry_Count : in Swagger.Nullable_Integer; Compaction_Periodforce_Periodtimeout : in Swagger.Nullable_Integer; Compaction_Periodsize_Delta_Estimation : in Swagger.Nullable_Integer; Compaction_Perioddisable_Estimation : in Swagger.Nullable_Boolean; Compaction_Periodretained_Generations : in Swagger.Nullable_Integer; Compaction_Periodmemory_Threshold : in Swagger.Nullable_Integer; Compaction_Periodprogress_Log : in Swagger.Nullable_Integer; Standby : in Swagger.Nullable_Boolean; Custom_Blob_Store : in Swagger.Nullable_Boolean; Custom_Segment_Store : in Swagger.Nullable_Boolean; Split_Persistence : in Swagger.Nullable_Boolean; Repository_Periodbackup_Perioddir : in Swagger.Nullable_UString; Blob_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Blob_Track_Snapshot_Interval_In_Secs : in Swagger.Nullable_Integer; Role : in Swagger.Nullable_UString; Register_Descriptors : in Swagger.Nullable_Boolean; Dispatch_Changes : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Monitor_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Commits_Tracker_Writer_Groups : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Segment_Node_Store_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Repository_Periodhome : in Swagger.Nullable_UString; Tarmk_Periodmode : in Swagger.Nullable_UString; Tarmk_Periodsize : in Swagger.Nullable_Integer; Segment_Cache_Periodsize : in Swagger.Nullable_Integer; String_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Cache_Periodsize : in Swagger.Nullable_Integer; String_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Template_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Node_Deduplication_Cache_Periodsize : in Swagger.Nullable_Integer; Pause_Compaction : in Swagger.Nullable_Boolean; Compaction_Periodretry_Count : in Swagger.Nullable_Integer; Compaction_Periodforce_Periodtimeout : in Swagger.Nullable_Integer; Compaction_Periodsize_Delta_Estimation : in Swagger.Nullable_Integer; Compaction_Perioddisable_Estimation : in Swagger.Nullable_Boolean; Compaction_Periodretained_Generations : in Swagger.Nullable_Integer; Compaction_Periodmemory_Threshold : in Swagger.Nullable_Integer; Compaction_Periodprogress_Log : in Swagger.Nullable_Integer; Standby : in Swagger.Nullable_Boolean; Custom_Blob_Store : in Swagger.Nullable_Boolean; Custom_Segment_Store : in Swagger.Nullable_Boolean; Split_Persistence : in Swagger.Nullable_Boolean; Repository_Periodbackup_Perioddir : in Swagger.Nullable_UString; Blob_Gc_Max_Age_In_Secs : in Swagger.Nullable_Integer; Blob_Track_Snapshot_Interval_In_Secs : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Segment_Standby_Store_Standby_Store_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodinstaller_Periodconfiguration_Periodpersist : in Swagger.Nullable_Boolean; Mode : in Swagger.Nullable_UString; Port : in Swagger.Nullable_Integer; Primary_Periodhost : in Swagger.Nullable_UString; Interval : in Swagger.Nullable_Integer; Primary_Periodallowed_Client_Ip_Ranges : in Swagger.UString_Vectors.Vector; Secure : in Swagger.Nullable_Boolean; Standby_Periodreadtimeout : in Swagger.Nullable_Integer; Standby_Periodautoclean : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_De (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Handler_Periodname : in Swagger.Nullable_UString; User_Periodexpiration_Time : in Swagger.Nullable_UString; User_Periodauto_Membership : in Swagger.UString_Vectors.Vector; User_Periodproperty_Mapping : in Swagger.UString_Vectors.Vector; User_Periodpath_Prefix : in Swagger.Nullable_UString; User_Periodmembership_Exp_Time : in Swagger.Nullable_UString; User_Periodmembership_Nesting_Depth : in Swagger.Nullable_Integer; User_Perioddynamic_Membership : in Swagger.Nullable_Boolean; User_Perioddisable_Missing : in Swagger.Nullable_Boolean; Group_Periodexpiration_Time : in Swagger.Nullable_UString; Group_Periodauto_Membership : in Swagger.UString_Vectors.Vector; Group_Periodproperty_Mapping : in Swagger.UString_Vectors.Vector; Group_Periodpath_Prefix : in Swagger.Nullable_UString; Enable_R_F_C7613_Usercase_Mapped_Profile : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Ex (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jaas_Periodranking : in Swagger.Nullable_Integer; Jaas_Periodcontrol_Flag : in Swagger.Nullable_UString; Jaas_Periodrealm_Name : in Swagger.Nullable_UString; Idp_Periodname : in Swagger.Nullable_UString; Sync_Periodhandler_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authentication_External_Impl_Pr (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Protect_External_Id : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Confi (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Cug_Supported_Paths : in Swagger.UString_Vectors.Vector; Cug_Enabled : in Swagger.Nullable_Boolean; Configuration_Ranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_Authorization_Cug_Impl_Cug_Exclu (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Principal_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Oak_Spi_Security_User_Action_Default_Authorizable (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled_Actions : in Swagger.Nullable_UString; User_Privilege_Names : in Swagger.UString_Vectors.Vector; Group_Privilege_Names : in Swagger.UString_Vectors.Vector; Constraint : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Vault_Packaging_Impl_Packaging_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Package_Roots : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheJackrabbitVaultPackagingImplPackagingImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Jackrabbit_Vault_Packaging_Registry_Impl_F_S_Package_Registry (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Home_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Auth_Core_Impl_Logout_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodmethods : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodpaths : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingAuthCoreImplLogoutServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Configuration_Bindings_Value_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Configuration_Resolver_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Config_Bucket_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigImplConfigurationResolverImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Inheritance_Stra (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Config_Property_Inheritance_Property_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Def_Default_Configuration_Persistence_Stra (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Override_Osgi_Configuration_Override_Provi (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Description : in Swagger.Nullable_UString; Overrides : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Impl_Override_System_Property_Configuration_Ove (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Management_Impl_Configuration_Management_Setti (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Ignore_Property_Name_Regex : in Swagger.UString_Vectors.Vector; Config_Collection_Properties_Resource_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Configuration_Resour (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Config_Path : in Swagger.Nullable_UString; Fallback_Paths : in Swagger.UString_Vectors.Vector; Config_Collection_Inheritance_Property_Names : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Caconfig_Resource_Impl_Def_Default_Context_Path_Strategy (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Config_Ref_Resource_Names : in Swagger.UString_Vectors.Vector; Config_Ref_Property_Names : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Html_Internal_Tagsoup_Html_Parser (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Parser_Periodfeatures : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Log_Log_Manager (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodlevel : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodnumber : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodsize : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodpattern : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodconfiguration_File : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodpackaging_Data_Enabled : in Swagger.Nullable_Boolean; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodmax_Caller_Data_Depth : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodmax_Old_File_Count_In_Dump : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodnum_Of_Lines : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCommonsLogLogManagerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodlevel : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodpattern : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodnames : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodadditiv : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCommonsLogLogManagerFactoryConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Log_Log_Manager_Factory_Writer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodnumber : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodsize : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodcommons_Periodlog_Periodfile_Periodbuffered : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingCommonsLogLogManagerFactoryWriterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Metrics_Internal_Log_Reporter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Period : in Swagger.Nullable_Integer; Time_Unit : in Swagger.Nullable_UString; Level : in Swagger.Nullable_UString; Logger_Name : in Swagger.Nullable_UString; Prefix : in Swagger.Nullable_UString; Pattern : in Swagger.Nullable_UString; Registry_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingCommonsMetricsInternalLogReporterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Metrics_Rrd4j_Impl_Codahale_Metrics_Reporter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Datasources : in Swagger.UString_Vectors.Vector; Step : in Swagger.Nullable_Integer; Archives : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Mime_Internal_Mime_Type_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Mime_Periodtypes : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Scheduler_Impl_Quartz_Scheduler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Pool_Name : in Swagger.Nullable_UString; Allowed_Pool_Names : in Swagger.UString_Vectors.Vector; Scheduler_Perioduseleaderforsingle : in Swagger.Nullable_Boolean; Metrics_Periodfilters : in Swagger.UString_Vectors.Vector; Slow_Threshold_Millis : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCommonsSchedulerImplQuartzSchedulerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Scheduler_Impl_Scheduler_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodquartz_Job_Periodduration_Periodacceptable : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Commons_Threads_Impl_Default_Thread_Pool_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Min_Pool_Size : in Swagger.Nullable_Integer; Max_Pool_Size : in Swagger.Nullable_Integer; Queue_Size : in Swagger.Nullable_Integer; Max_Thread_Age : in Swagger.Nullable_Integer; Keep_Alive_Time : in Swagger.Nullable_Integer; Block_Policy : in Swagger.Nullable_UString; Shutdown_Graceful : in Swagger.Nullable_Boolean; Daemon : in Swagger.Nullable_Boolean; Shutdown_Wait_Time : in Swagger.Nullable_Integer; Priority : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Datasource_Data_Source_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Datasource_Periodname : in Swagger.Nullable_UString; Datasource_Periodsvc_Periodprop_Periodname : in Swagger.Nullable_UString; Driver_Class_Name : in Swagger.Nullable_UString; Url : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Default_Auto_Commit : in Swagger.Nullable_UString; Default_Read_Only : in Swagger.Nullable_UString; Default_Transaction_Isolation : in Swagger.Nullable_UString; Default_Catalog : in Swagger.Nullable_UString; Max_Active : in Swagger.Nullable_Integer; Max_Idle : in Swagger.Nullable_Integer; Min_Idle : in Swagger.Nullable_Integer; Initial_Size : in Swagger.Nullable_Integer; Max_Wait : in Swagger.Nullable_Integer; Max_Age : in Swagger.Nullable_Integer; Test_On_Borrow : in Swagger.Nullable_Boolean; Test_On_Return : in Swagger.Nullable_Boolean; Test_While_Idle : in Swagger.Nullable_Boolean; Validation_Query : in Swagger.Nullable_UString; Validation_Query_Timeout : in Swagger.Nullable_Integer; Time_Between_Eviction_Runs_Millis : in Swagger.Nullable_Integer; Min_Evictable_Idle_Time_Millis : in Swagger.Nullable_Integer; Connection_Properties : in Swagger.Nullable_UString; Init_S_Q_L : in Swagger.Nullable_UString; Jdbc_Interceptors : in Swagger.Nullable_UString; Validation_Interval : in Swagger.Nullable_Integer; Log_Validation_Errors : in Swagger.Nullable_Boolean; Datasource_Periodsvc_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDatasourceDataSourceFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Datasource_J_N_D_I_Data_Source_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Datasource_Periodname : in Swagger.Nullable_UString; Datasource_Periodsvc_Periodprop_Periodname : in Swagger.Nullable_UString; Datasource_Periodjndi_Periodname : in Swagger.Nullable_UString; Jndi_Periodproperties : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDatasourceJNDIDataSourceFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Discovery_Oak_Config (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Connector_Ping_Timeout : in Swagger.Nullable_Integer; Connector_Ping_Interval : in Swagger.Nullable_Integer; Discovery_Lite_Check_Interval : in Swagger.Nullable_Integer; Cluster_Sync_Service_Timeout : in Swagger.Nullable_Integer; Cluster_Sync_Service_Interval : in Swagger.Nullable_Integer; Enable_Sync_Token : in Swagger.Nullable_Boolean; Min_Event_Delay : in Swagger.Nullable_Integer; Socket_Connect_Timeout : in Swagger.Nullable_Integer; So_Timeout : in Swagger.Nullable_Integer; Topology_Connector_Urls : in Swagger.UString_Vectors.Vector; Topology_Connector_Whitelist : in Swagger.UString_Vectors.Vector; Auto_Stop_Local_Loop_Enabled : in Swagger.Nullable_Boolean; Gzip_Connector_Requests_Enabled : in Swagger.Nullable_Boolean; Hmac_Enabled : in Swagger.Nullable_Boolean; Enable_Encryption : in Swagger.Nullable_Boolean; Shared_Key : in Swagger.Nullable_UString; Hmac_Shared_Key_T_T_L : in Swagger.Nullable_Integer; Backoff_Standby_Factor : in Swagger.Nullable_UString; Backoff_Stable_Factor : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDiscoveryOakConfigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Discovery_Oak_Synchronized_Clocks_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Forward_Distribution_Agent_Facto (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Allowed_Periodroots : in Swagger.UString_Vectors.Vector; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Package_Importer_Periodendpoints : in Swagger.UString_Vectors.Vector; Passive_Queues : in Swagger.UString_Vectors.Vector; Priority_Queues : in Swagger.UString_Vectors.Vector; Retry_Periodstrategy : in Swagger.Nullable_UString; Retry_Periodattempts : in Swagger.Nullable_Integer; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Queue_Periodprovider : in Swagger.Nullable_UString; Async_Perioddelivery : in Swagger.Nullable_Boolean; Http_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Privilege_Distribution_Request_A (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Jcr_Privilege : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Queue_Distribution_Agent_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Allowed_Periodroots : in Swagger.UString_Vectors.Vector; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Queue_Provider_Factory_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Priority_Queues : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Reverse_Distribution_Agent_Facto (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Package_Exporter_Periodendpoints : in Swagger.UString_Vectors.Vector; Pull_Perioditems : in Swagger.Nullable_Integer; Http_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Simple_Distribution_Agent_Factor (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Package_Exporter_Periodtarget : in Swagger.Nullable_UString; Package_Importer_Periodtarget : in Swagger.Nullable_UString; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Agent_Impl_Sync_Distribution_Agent_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Title : in Swagger.Nullable_UString; Details : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Service_Name : in Swagger.Nullable_UString; Log_Periodlevel : in Swagger.Nullable_UString; Queue_Periodprocessing_Periodenabled : in Swagger.Nullable_Boolean; Passive_Queues : in Swagger.UString_Vectors.Vector; Package_Exporter_Periodendpoints : in Swagger.UString_Vectors.Vector; Package_Importer_Periodendpoints : in Swagger.UString_Vectors.Vector; Retry_Periodstrategy : in Swagger.Nullable_UString; Retry_Periodattempts : in Swagger.Nullable_Integer; Pull_Perioditems : in Swagger.Nullable_Integer; Http_Periodconn_Periodtimeout : in Swagger.Nullable_Integer; Request_Authorization_Strategy_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Triggers_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Monitor_Distribution_Queue_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Number_Of_Retries_Allowed : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Agent_Distributio (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Queue : in Swagger.Nullable_UString; Drop_Periodinvalid_Perioditems : in Swagger.Nullable_Boolean; Agent_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplExporterAgentDistributioInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Local_Distributio (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplExporterLocalDistributioInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Exporter_Remote_Distributi (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Endpoints : in Swagger.UString_Vectors.Vector; Pull_Perioditems : in Swagger.Nullable_Integer; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Local_Distributio (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Package_Builder_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplImporterLocalDistributioInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Remote_Distributi (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Endpoints : in Swagger.UString_Vectors.Vector; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Packaging_Impl_Importer_Repository_Distri (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Service_Periodname : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Privilege_Periodname : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Configuration (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Kind : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionResourcesImplDistributionConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Resources_Impl_Distribution_Service_Resour (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Kind : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionResourcesImplDistributionServiceResourInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Serialization_Impl_Distribution_Package_Bu (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; P_Type : in Swagger.Nullable_UString; Format_Periodtarget : in Swagger.Nullable_UString; Temp_Fs_Folder : in Swagger.Nullable_UString; File_Threshold : in Swagger.Nullable_Integer; Memory_Unit : in Swagger.Nullable_UString; Use_Off_Heap_Memory : in Swagger.Nullable_Boolean; Digest_Algorithm : in Swagger.Nullable_UString; Monitoring_Queue_Size : in Swagger.Nullable_Integer; Cleanup_Delay : in Swagger.Nullable_Integer; Package_Periodfilters : in Swagger.UString_Vectors.Vector; Property_Periodfilters : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingDistributionSerializationImplDistributionPackageBuInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Serialization_Impl_Vlt_Vault_Distribution (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; P_Type : in Swagger.Nullable_UString; Import_Mode : in Swagger.Nullable_UString; Acl_Handling : in Swagger.Nullable_UString; Package_Periodroots : in Swagger.Nullable_UString; Package_Periodfilters : in Swagger.UString_Vectors.Vector; Property_Periodfilters : in Swagger.UString_Vectors.Vector; Temp_Fs_Folder : in Swagger.Nullable_UString; Use_Binary_References : in Swagger.Nullable_Boolean; Auto_Save_Threshold : in Swagger.Nullable_Integer; Cleanup_Delay : in Swagger.Nullable_Integer; File_Threshold : in Swagger.Nullable_Integer; M_E_G_A_B_Y_T_E_S : in Swagger.Nullable_UString; Use_Off_Heap_Memory : in Swagger.Nullable_Boolean; Digest_Algorithm : in Swagger.Nullable_UString; Monitoring_Queue_Size : in Swagger.Nullable_Integer; Paths_Mapping : in Swagger.UString_Vectors.Vector; Strict_Import : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingDistributionSerializationImplVltVaultDistributionInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Transport_Impl_User_Credentials_Distributi (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Username : in Swagger.Nullable_UString; Password : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTransportImplUserCredentialsDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Distribution_Event_Distribute (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplDistributionEventDistributeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Jcr_Event_Distribution_Trigger (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Ignored_Paths_Patterns : in Swagger.UString_Vectors.Vector; Service_Name : in Swagger.Nullable_UString; Deep : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Persisted_Jcr_Event_Distributi (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Nuggets_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Remote_Event_Distribution_Trig (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Endpoint : in Swagger.Nullable_UString; Transport_Secret_Provider_Periodtarget : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Resource_Event_Distribution_Tr (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Distribution_Trigger_Impl_Scheduled_Distribution_Trigge (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Seconds : in Swagger.Nullable_UString; Service_Name : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Auth_Sling_Authenticator (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodlistener : in Swagger.Nullable_UString; Auth_Periodsudo_Periodcookie : in Swagger.Nullable_UString; Auth_Periodsudo_Periodparameter : in Swagger.Nullable_UString; Auth_Periodannonymous : in Swagger.Nullable_Boolean; Sling_Periodauth_Periodrequirements : in Swagger.UString_Vectors.Vector; Sling_Periodauth_Periodanonymous_Perioduser : in Swagger.Nullable_UString; Sling_Periodauth_Periodanonymous_Periodpassword : in Swagger.Nullable_UString; Auth_Periodhttp : in Swagger.Nullable_UString; Auth_Periodhttp_Periodrealm : in Swagger.Nullable_UString; Auth_Perioduri_Periodsuffix : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingEngineImplAuthSlingAuthenticatorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Debug_Request_Progress_Tracker_Log_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Extensions : in Swagger.UString_Vectors.Vector; Min_Duration_Ms : in Swagger.Nullable_Integer; Max_Duration_Ms : in Swagger.Nullable_Integer; Compact_Log_Format : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Log_Request_Logger (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Request_Periodlog_Periodoutput : in Swagger.Nullable_UString; Request_Periodlog_Periodoutputtype : in Swagger.Nullable_Integer; Request_Periodlog_Periodenabled : in Swagger.Nullable_Boolean; Access_Periodlog_Periodoutput : in Swagger.Nullable_UString; Access_Periodlog_Periodoutputtype : in Swagger.Nullable_Integer; Access_Periodlog_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineImplLogRequestLoggerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Log_Request_Logger_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Request_Periodlog_Periodservice_Periodformat : in Swagger.Nullable_UString; Request_Periodlog_Periodservice_Periodoutput : in Swagger.Nullable_UString; Request_Periodlog_Periodservice_Periodoutputtype : in Swagger.Nullable_Integer; Request_Periodlog_Periodservice_Periodonentry : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineImplLogRequestLoggerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Impl_Sling_Main_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodmax_Periodcalls : in Swagger.Nullable_Integer; Sling_Periodmax_Periodinclusions : in Swagger.Nullable_Integer; Sling_Periodtrace_Periodallow : in Swagger.Nullable_Boolean; Sling_Periodmax_Periodrecord_Periodrequests : in Swagger.Nullable_Integer; Sling_Periodstore_Periodpattern_Periodrequests : in Swagger.UString_Vectors.Vector; Sling_Periodserverinfo : in Swagger.Nullable_UString; Sling_Periodadditional_Periodresponse_Periodheaders : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingEngineImplSlingMainServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Engine_Parameters (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Perioddefault_Periodparameter_Periodencoding : in Swagger.Nullable_UString; Sling_Perioddefault_Periodmax_Periodparameters : in Swagger.Nullable_Integer; File_Periodlocation : in Swagger.Nullable_UString; File_Periodthreshold : in Swagger.Nullable_Integer; File_Periodmax : in Swagger.Nullable_Integer; Request_Periodmax : in Swagger.Nullable_Integer; Sling_Perioddefault_Periodparameter_Periodcheck_For_Additional_Container_Parameters : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingEngineParametersInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Eventing_Thread_Pool (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Min_Pool_Size : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventImplEventingThreadPoolInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Jobs_Default_Job_Manager (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Queue_Periodpriority : in Swagger.Nullable_UString; Queue_Periodretries : in Swagger.Nullable_Integer; Queue_Periodretrydelay : in Swagger.Nullable_Integer; Queue_Periodmaxparallel : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventImplJobsDefaultJobManagerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Jobs_Jcr_Persistence_Handler (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Job_Periodconsumermanager_Perioddisable_Distribution : in Swagger.Nullable_Boolean; Startup_Perioddelay : in Swagger.Nullable_Integer; Cleanup_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventImplJobsJcrPersistenceHandlerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Impl_Jobs_Job_Consumer_Manager (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodinstaller_Periodconfiguration_Periodpersist : in Swagger.Nullable_Boolean; Job_Periodconsumermanager_Periodwhitelist : in Swagger.UString_Vectors.Vector; Job_Periodconsumermanager_Periodblacklist : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingEventImplJobsJobConsumerManagerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Event_Jobs_Queue_Configuration (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Queue_Periodname : in Swagger.Nullable_UString; Queue_Periodtopics : in Swagger.UString_Vectors.Vector; Queue_Periodtype : in Swagger.Nullable_UString; Queue_Periodpriority : in Swagger.Nullable_UString; Queue_Periodretries : in Swagger.Nullable_Integer; Queue_Periodretrydelay : in Swagger.Nullable_Integer; Queue_Periodmaxparallel : in Swagger.Number; Queue_Periodkeep_Jobs : in Swagger.Nullable_Boolean; Queue_Periodprefer_Run_On_Creation_Instance : in Swagger.Nullable_Boolean; Queue_Periodthread_Pool_Size : in Swagger.Nullable_Integer; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingEventJobsQueueConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Extensions_Webconsolesecurityprovider_Internal_Sling_W (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Users : in Swagger.UString_Vectors.Vector; Groups : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Featureflags_Feature (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Description : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingFeatureflagsFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Featureflags_Impl_Configured_Feature (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Name : in Swagger.Nullable_UString; Description : in Swagger.Nullable_UString; Enabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingFeatureflagsImplConfiguredFeatureInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hapi_Impl_H_Api_Util_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodresourcetype : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodcollectionresourcetype : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodsearchpaths : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodexternalurl : in Swagger.Nullable_UString; Org_Periodapache_Periodsling_Periodhapi_Periodtools_Periodenabled : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingHapiImplHApiUtilImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Composite_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Filter_Periodtags : in Swagger.UString_Vectors.Vector; Filter_Periodcombine_Tags_With_Or : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingHcCoreImplCompositeHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Executor_Health_Check_Executor_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Timeout_In_Ms : in Swagger.Nullable_Integer; Long_Running_Future_Threshold_For_Critical_Ms : in Swagger.Nullable_Integer; Result_Cache_Ttl_In_Ms : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Jmx_Attribute_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Mbean_Periodname : in Swagger.Nullable_UString; Attribute_Periodname : in Swagger.Nullable_UString; Attribute_Periodvalue_Periodconstraint : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingHcCoreImplJmxAttributeHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Scriptable_Health_Check (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Hc_Periodname : in Swagger.Nullable_UString; Hc_Periodtags : in Swagger.UString_Vectors.Vector; Hc_Periodmbean_Periodname : in Swagger.Nullable_UString; Expression : in Swagger.Nullable_UString; Language_Periodextension : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingHcCoreImplScriptableHealthCheckInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Servlet_Health_Check_Executor_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Servlet_Path : in Swagger.Nullable_UString; Disabled : in Swagger.Nullable_Boolean; Cors_Periodaccess_Control_Allow_Origin : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Hc_Core_Impl_Servlet_Result_Txt_Verbose_Serializer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Total_Width : in Swagger.Nullable_Integer; Col_Width_Name : in Swagger.Nullable_Integer; Col_Width_Result : in Swagger.Nullable_Integer; Col_Width_Timing : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_I18n_Impl_I18_N_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Sling_Periodfilter_Periodscope : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingI18nImplI18NFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_I18n_Impl_Jcr_Resource_Bundle_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Locale_Perioddefault : in Swagger.Nullable_UString; Preload_Periodbundles : in Swagger.Nullable_Boolean; Invalidation_Perioddelay : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingI18nImplJcrResourceBundleProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Installer_Provider_Jcr_Impl_Jcr_Installer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Handler_Periodschemes : in Swagger.UString_Vectors.Vector; Sling_Periodjcrinstall_Periodfolder_Periodname_Periodregexp : in Swagger.Nullable_UString; Sling_Periodjcrinstall_Periodfolder_Periodmax_Perioddepth : in Swagger.Nullable_Integer; Sling_Periodjcrinstall_Periodsearch_Periodpath : in Swagger.UString_Vectors.Vector; Sling_Periodjcrinstall_Periodnew_Periodconfig_Periodpath : in Swagger.Nullable_UString; Sling_Periodjcrinstall_Periodsignal_Periodpath : in Swagger.Nullable_UString; Sling_Periodjcrinstall_Periodenable_Periodwriteback : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingInstallerProviderJcrImplJcrInstallerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Whitelist_Periodbypass : in Swagger.Nullable_Boolean; Whitelist_Periodbundles_Periodregexp : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrBaseInternalLoginAdminWhitelistInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Base_Internal_Login_Admin_Whitelist_Fragment (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Whitelist_Periodname : in Swagger.Nullable_UString; Whitelist_Periodbundles : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Davex_Impl_Servlets_Sling_Dav_Ex_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Alias : in Swagger.Nullable_UString; Dav_Periodcreate_Absolute_Uri : in Swagger.Nullable_Boolean; Dav_Periodprotectedhandlers : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrDavexImplServletsSlingDavExServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Jackrabbit_Server_Jndi_Registration_Support (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Java_Periodnaming_Periodfactory_Periodinitial : in Swagger.Nullable_UString; Java_Periodnaming_Periodprovider_Periodurl : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Jackrabbit_Server_Rmi_Registration_Support (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Port : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Repoinit_Impl_Repository_Initializer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; References : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingJcrRepoinitImplRepositoryInitializerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Repoinit_Repository_Initializer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; References : in Swagger.UString_Vectors.Vector; Scripts : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingJcrRepoinitRepositoryInitializerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Resource_Internal_Jcr_Resource_Resolver_Factory_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodsearchpath : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodmanglenamespaces : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodallow_Direct : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodrequired_Periodproviders : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodrequired_Periodprovidernames : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodvirtual : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodmapping : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodmap_Periodlocation : in Swagger.Nullable_UString; Resource_Periodresolver_Periodmap_Periodobservation : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Perioddefault_Periodvanity_Periodredirect_Periodstatus : in Swagger.Nullable_Integer; Resource_Periodresolver_Periodenable_Periodvanitypath : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodvanitypath_Periodmax_Entries : in Swagger.Nullable_Integer; Resource_Periodresolver_Periodvanitypath_Periodmax_Entries_Periodstartup : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodvanitypath_Periodbloomfilter_Periodmax_Bytes : in Swagger.Nullable_Integer; Resource_Periodresolver_Periodoptimize_Periodalias_Periodresolution : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodvanitypath_Periodwhitelist : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodvanitypath_Periodblacklist : in Swagger.UString_Vectors.Vector; Resource_Periodresolver_Periodvanity_Periodprecedence : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodproviderhandling_Periodparanoid : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodlog_Periodclosing : in Swagger.Nullable_Boolean; Resource_Periodresolver_Periodlog_Periodunclosed : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Resource_Internal_Jcr_System_User_Validator (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Allow_Periodonly_Periodsystem_Perioduser : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Resourcesecurity_Impl_Resource_Access_Gate_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Path : in Swagger.Nullable_UString; Checkpath_Periodprefix : in Swagger.Nullable_UString; Jcr_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Default_Handler_Service (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Type_Periodcollections : in Swagger.Nullable_UString; Type_Periodnoncollections : in Swagger.Nullable_UString; Type_Periodcontent : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Handler_Dir_Listing_Export_Handler_Servic (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jcr_Webdav_Impl_Servlets_Simple_Web_Dav_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Dav_Periodroot : in Swagger.Nullable_UString; Dav_Periodcreate_Absolute_Uri : in Swagger.Nullable_Boolean; Dav_Periodrealm : in Swagger.Nullable_UString; Collection_Periodtypes : in Swagger.UString_Vectors.Vector; Filter_Periodprefixes : in Swagger.UString_Vectors.Vector; Filter_Periodtypes : in Swagger.Nullable_UString; Filter_Perioduris : in Swagger.Nullable_UString; Type_Periodcollections : in Swagger.Nullable_UString; Type_Periodnoncollections : in Swagger.Nullable_UString; Type_Periodcontent : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Jmx_Provider_Impl_J_M_X_Resource_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Provider_Periodroots : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingJmxProviderImplJMXResourceProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Models_Impl_Model_Adapter_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Osgi_Periodhttp_Periodwhiteboard_Periodlistener : in Swagger.Nullable_UString; Osgi_Periodhttp_Periodwhiteboard_Periodcontext_Periodselect : in Swagger.Nullable_UString; Max_Periodrecursion_Perioddepth : in Swagger.Nullable_Integer; Cleanup_Periodjob_Periodperiod : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingModelsImplModelAdapterFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Models_Jacksonexporter_Impl_Resource_Module_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Max_Periodrecursion_Periodlevels : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Resource_Inventory_Impl_Resource_Inventory_Printer_Facto (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Felix_Periodinventory_Periodprinter_Periodname : in Swagger.Nullable_UString; Felix_Periodinventory_Periodprinter_Periodtitle : in Swagger.Nullable_UString; Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Resourcemerger_Impl_Merged_Resource_Provider_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Merge_Periodroot : in Swagger.Nullable_UString; Merge_Periodread_Only : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Resourcemerger_Picker_Overriding (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Merge_Periodroot : in Swagger.Nullable_UString; Merge_Periodread_Only : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingResourcemergerPickerOverridingInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Core_Impl_Script_Cache_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodscripting_Periodcache_Periodsize : in Swagger.Nullable_Integer; Org_Periodapache_Periodsling_Periodscripting_Periodcache_Periodadditional_Extensions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingScriptingCoreImplScriptCacheImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Core_Impl_Scripting_Resource_Resolver_Provider (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Log_Periodstacktrace_Periodonclose : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Java_Impl_Java_Script_Engine_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Java_Periodclassdebuginfo : in Swagger.Nullable_Boolean; Java_Periodjava_Encoding : in Swagger.Nullable_UString; Java_Periodcompiler_Source_V_M : in Swagger.Nullable_UString; Java_Periodcompiler_Target_V_M : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Javascript_Internal_Rhino_Java_Script_Engine_Fa (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodscripting_Periodjavascript_Periodrhino_Periodopt_Level : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Jsp_Jsp_Script_Engine_Factory (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Jasper_Periodcompiler_Target_V_M : in Swagger.Nullable_UString; Jasper_Periodcompiler_Source_V_M : in Swagger.Nullable_UString; Jasper_Periodclassdebuginfo : in Swagger.Nullable_Boolean; Jasper_Periodenable_Pooling : in Swagger.Nullable_Boolean; Jasper_Periodie_Class_Id : in Swagger.Nullable_UString; Jasper_Periodgen_String_As_Char_Array : in Swagger.Nullable_Boolean; Jasper_Periodkeepgenerated : in Swagger.Nullable_Boolean; Jasper_Periodmappedfile : in Swagger.Nullable_Boolean; Jasper_Periodtrim_Spaces : in Swagger.Nullable_Boolean; Jasper_Perioddisplay_Source_Fragments : in Swagger.Nullable_Boolean; Default_Periodis_Periodsession : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingScriptingJspJspScriptEngineFactoryInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Scripting_Sightly_Js_Impl_Jsapi_Sly_Bindings_Values_Prov (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Org_Periodapache_Periodsling_Periodscripting_Periodsightly_Periodjs_Periodbindings : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Security_Impl_Content_Disposition_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodcontent_Perioddisposition_Periodpaths : in Swagger.UString_Vectors.Vector; Sling_Periodcontent_Perioddisposition_Periodexcluded_Periodpaths : in Swagger.UString_Vectors.Vector; Sling_Periodcontent_Perioddisposition_Periodall_Periodpaths : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingSecurityImplContentDispositionFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Security_Impl_Referrer_Filter (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Allow_Periodempty : in Swagger.Nullable_Boolean; Allow_Periodhosts : in Swagger.UString_Vectors.Vector; Allow_Periodhosts_Periodregexp : in Swagger.UString_Vectors.Vector; Filter_Periodmethods : in Swagger.UString_Vectors.Vector; Exclude_Periodagents_Periodregexp : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingSecurityImplReferrerFilterInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; User_Periodmapping : in Swagger.UString_Vectors.Vector; User_Perioddefault : in Swagger.Nullable_UString; User_Periodenable_Perioddefault_Periodmapping : in Swagger.Nullable_Boolean; Require_Periodvalidation : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingServiceusermappingImplServiceUserMapperImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Serviceusermapping_Impl_Service_User_Mapper_Impl_Amended (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; User_Periodmapping : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Get_Default_Get_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Aliases : in Swagger.UString_Vectors.Vector; Index : in Swagger.Nullable_Boolean; Index_Periodfiles : in Swagger.UString_Vectors.Vector; Enable_Periodhtml : in Swagger.Nullable_Boolean; Enable_Periodjson : in Swagger.Nullable_Boolean; Enable_Periodtxt : in Swagger.Nullable_Boolean; Enable_Periodxml : in Swagger.Nullable_Boolean; Json_Periodmaximumresults : in Swagger.Nullable_Integer; Ecma_Suport : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingServletsGetDefaultGetServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Get_Impl_Version_Version_Info_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodservlet_Periodselectors : in Swagger.UString_Vectors.Vector; Ecma_Suport : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingServletsGetImplVersionVersionInfoServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Post_Impl_Helper_Chunk_Clean_Up_Task (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Scheduler_Periodexpression : in Swagger.Nullable_UString; Scheduler_Periodconcurrent : in Swagger.Nullable_Boolean; Chunk_Periodcleanup_Periodage : in Swagger.Nullable_Integer; Result : out .Models.OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Post_Impl_Sling_Post_Servlet (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Servlet_Periodpost_Perioddate_Formats : in Swagger.UString_Vectors.Vector; Servlet_Periodpost_Periodnode_Name_Hints : in Swagger.UString_Vectors.Vector; Servlet_Periodpost_Periodnode_Name_Max_Length : in Swagger.Nullable_Integer; Servlet_Periodpost_Periodcheckin_New_Versionable_Nodes : in Swagger.Nullable_Boolean; Servlet_Periodpost_Periodauto_Checkout : in Swagger.Nullable_Boolean; Servlet_Periodpost_Periodauto_Checkin : in Swagger.Nullable_Boolean; Servlet_Periodpost_Periodignore_Pattern : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingServletsPostImplSlingPostServletInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Servlets_Resolver_Sling_Servlet_Resolver (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Servletresolver_Periodservlet_Root : in Swagger.Nullable_UString; Servletresolver_Periodcache_Size : in Swagger.Nullable_Integer; Servletresolver_Periodpaths : in Swagger.UString_Vectors.Vector; Servletresolver_Perioddefault_Extensions : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingServletsResolverSlingServletResolverInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Settings_Impl_Sling_Settings_Service_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Sling_Periodname : in Swagger.Nullable_UString; Sling_Perioddescription : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingSettingsImplSlingSettingsServiceImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Startupfilter_Impl_Startup_Filter_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Active_Periodby_Perioddefault : in Swagger.Nullable_Boolean; Default_Periodmessage : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingStartupfilterImplStartupFilterImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Tenant_Internal_Tenant_Provider_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Tenant_Periodroot : in Swagger.Nullable_UString; Tenant_Periodpath_Periodmatcher : in Swagger.UString_Vectors.Vector; Result : out .Models.OrgApacheSlingTenantInternalTenantProviderImplInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Tracer_Internal_Log_Tracer (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Tracer_Sets : in Swagger.UString_Vectors.Vector; Enabled : in Swagger.Nullable_Boolean; Servlet_Enabled : in Swagger.Nullable_Boolean; Recording_Cache_Size_In_M_B : in Swagger.Nullable_Integer; Recording_Cache_Duration_In_Secs : in Swagger.Nullable_Integer; Recording_Compression_Enabled : in Swagger.Nullable_Boolean; Gzip_Response : in Swagger.Nullable_Boolean; Result : out .Models.OrgApacheSlingTracerInternalLogTracerInfo_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Org_Apache_Sling_Xss_Impl_X_S_S_Filter_Impl (Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Policy_Path : in Swagger.Nullable_UString; Result : out .Models.OrgApacheSlingXssImplXSSFilterImplInfo_Type; Context : in out Swagger.Servers.Context_Type); private Impl : Implementation_Type; end Server; end Shared_Instance; end .Skeletons;
zhmu/ananas
Ada
659
adb
-- { dg-do run } with Interfaces; procedure Pack24 is type Enum_1 is (Lit_1); for Enum_1'SIZE use 16; type Rec1(D1 : Enum_1 := Lit_1) is record case D1 is when Lit_1 => F1 : Interfaces.Unsigned_16; when others => Null; end case; end record; pragma Pack(Rec1); type Rec2 is record F1 : Interfaces.Unsigned_16; F2 : Rec1; end record; pragma Pack(Rec2); type Rec3 is record F1 : Interfaces.Unsigned_8; F2 : Rec2; end record; pragma Pack(Rec3); begin if Rec3'Size /= 56 then raise Program_Error; end if; end;
zhmu/ananas
Ada
3,749
adb
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . M O S T _ R E C E N T _ E X C E P T I O N -- -- -- -- B o d y -- -- -- -- Copyright (C) 2000-2022, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Exceptions.Is_Null_Occurrence; with System.Soft_Links; package body GNAT.Most_Recent_Exception is ---------------- -- Occurrence -- ---------------- function Occurrence return Ada.Exceptions.Exception_Occurrence is EOA : constant Ada.Exceptions.Exception_Occurrence_Access := GNAT.Most_Recent_Exception.Occurrence_Access; use type Ada.Exceptions.Exception_Occurrence_Access; begin return Result : Ada.Exceptions.Exception_Occurrence do if EOA = null then Ada.Exceptions.Save_Occurrence (Target => Result, Source => Ada.Exceptions.Null_Occurrence); else Ada.Exceptions.Save_Occurrence (Target => Result, Source => EOA.all); end if; end return; end Occurrence; ----------------------- -- Occurrence_Access -- ----------------------- function Occurrence_Access return Ada.Exceptions.Exception_Occurrence_Access is use Ada.Exceptions; EOA : constant Exception_Occurrence_Access := System.Soft_Links.Get_Current_Excep.all; begin if EOA = null then return null; elsif Is_Null_Occurrence (EOA.all) then return null; else return EOA; end if; end Occurrence_Access; end GNAT.Most_Recent_Exception;
python36/0xfa
Ada
396
ads
with numbers; use numbers; with strings; use strings; with env; use env; package getter.high is ERROR_NO_CLOSED : exception; ERROR_HIGH : exception; function get return character; procedure start (s : string); private use type unb.unbounded_string; type types is (type_byte, type_word); last_index : natural := 0; function is_type (s : string) return boolean; end getter.high;
reznikmm/matreshka
Ada
3,719
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Draw_Fit_To_Size_Attributes is pragma Preelaborate; type ODF_Draw_Fit_To_Size_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Draw_Fit_To_Size_Attribute_Access is access all ODF_Draw_Fit_To_Size_Attribute'Class with Storage_Size => 0; end ODF.DOM.Draw_Fit_To_Size_Attributes;
thieryw/sorting_algo
Ada
15,855
ads
pragma Ada_95; pragma Warnings (Off); with System; package ada_main is gnat_argc : Integer; gnat_argv : System.Address; gnat_envp : System.Address; pragma Import (C, gnat_argc); pragma Import (C, gnat_argv); pragma Import (C, gnat_envp); gnat_exit_status : Integer; pragma Import (C, gnat_exit_status); GNAT_Version : constant String := "GNAT Version: 6.3.0" & ASCII.NUL; pragma Export (C, GNAT_Version, "__gnat_version"); Ada_Main_Program_Name : constant String := "_ada_sorting_exercise" & ASCII.NUL; pragma Export (C, Ada_Main_Program_Name, "__gnat_ada_main_program_name"); procedure adainit; pragma Export (C, adainit, "adainit"); procedure adafinal; pragma Export (C, adafinal, "adafinal"); function main (argc : Integer; argv : System.Address; envp : System.Address) return Integer; pragma Export (C, main, "main"); type Version_32 is mod 2 ** 32; u00001 : constant Version_32 := 16#ce4e4061#; pragma Export (C, u00001, "sorting_exerciseB"); u00002 : constant Version_32 := 16#b6df930e#; pragma Export (C, u00002, "system__standard_libraryB"); u00003 : constant Version_32 := 16#937076cc#; pragma Export (C, u00003, "system__standard_libraryS"); u00004 : constant Version_32 := 16#3ffc8e18#; pragma Export (C, u00004, "adaS"); u00005 : constant Version_32 := 16#f64b89a4#; pragma Export (C, u00005, "ada__integer_text_ioB"); u00006 : constant Version_32 := 16#f1daf268#; pragma Export (C, u00006, "ada__integer_text_ioS"); u00007 : constant Version_32 := 16#e7214354#; pragma Export (C, u00007, "ada__exceptionsB"); u00008 : constant Version_32 := 16#020f9e08#; pragma Export (C, u00008, "ada__exceptionsS"); u00009 : constant Version_32 := 16#e947e6a9#; pragma Export (C, u00009, "ada__exceptions__last_chance_handlerB"); u00010 : constant Version_32 := 16#41e5552e#; pragma Export (C, u00010, "ada__exceptions__last_chance_handlerS"); u00011 : constant Version_32 := 16#6326c08a#; pragma Export (C, u00011, "systemS"); u00012 : constant Version_32 := 16#465d427a#; pragma Export (C, u00012, "system__soft_linksB"); u00013 : constant Version_32 := 16#fda218df#; pragma Export (C, u00013, "system__soft_linksS"); u00014 : constant Version_32 := 16#b01dad17#; pragma Export (C, u00014, "system__parametersB"); u00015 : constant Version_32 := 16#1d0ccdf5#; pragma Export (C, u00015, "system__parametersS"); u00016 : constant Version_32 := 16#0f0cb66d#; pragma Export (C, u00016, "system__secondary_stackB"); u00017 : constant Version_32 := 16#c8470fe3#; pragma Export (C, u00017, "system__secondary_stackS"); u00018 : constant Version_32 := 16#39a03df9#; pragma Export (C, u00018, "system__storage_elementsB"); u00019 : constant Version_32 := 16#4ee58a8e#; pragma Export (C, u00019, "system__storage_elementsS"); u00020 : constant Version_32 := 16#41837d1e#; pragma Export (C, u00020, "system__stack_checkingB"); u00021 : constant Version_32 := 16#ed99ab62#; pragma Export (C, u00021, "system__stack_checkingS"); u00022 : constant Version_32 := 16#87a448ff#; pragma Export (C, u00022, "system__exception_tableB"); u00023 : constant Version_32 := 16#3e88a9c8#; pragma Export (C, u00023, "system__exception_tableS"); u00024 : constant Version_32 := 16#ce4af020#; pragma Export (C, u00024, "system__exceptionsB"); u00025 : constant Version_32 := 16#0b45ad7c#; pragma Export (C, u00025, "system__exceptionsS"); u00026 : constant Version_32 := 16#4c9e814d#; pragma Export (C, u00026, "system__exceptions__machineS"); u00027 : constant Version_32 := 16#aa0563fc#; pragma Export (C, u00027, "system__exceptions_debugB"); u00028 : constant Version_32 := 16#1dac394e#; pragma Export (C, u00028, "system__exceptions_debugS"); u00029 : constant Version_32 := 16#570325c8#; pragma Export (C, u00029, "system__img_intB"); u00030 : constant Version_32 := 16#61fd2048#; pragma Export (C, u00030, "system__img_intS"); u00031 : constant Version_32 := 16#39df8c17#; pragma Export (C, u00031, "system__tracebackB"); u00032 : constant Version_32 := 16#3d041e4e#; pragma Export (C, u00032, "system__tracebackS"); u00033 : constant Version_32 := 16#9ed49525#; pragma Export (C, u00033, "system__traceback_entriesB"); u00034 : constant Version_32 := 16#637d36fa#; pragma Export (C, u00034, "system__traceback_entriesS"); u00035 : constant Version_32 := 16#6fd210f2#; pragma Export (C, u00035, "system__traceback__symbolicB"); u00036 : constant Version_32 := 16#dd19f67a#; pragma Export (C, u00036, "system__traceback__symbolicS"); u00037 : constant Version_32 := 16#701f9d88#; pragma Export (C, u00037, "ada__exceptions__tracebackB"); u00038 : constant Version_32 := 16#20245e75#; pragma Export (C, u00038, "ada__exceptions__tracebackS"); u00039 : constant Version_32 := 16#57a37a42#; pragma Export (C, u00039, "system__address_imageB"); u00040 : constant Version_32 := 16#c2ca5db0#; pragma Export (C, u00040, "system__address_imageS"); u00041 : constant Version_32 := 16#8c33a517#; pragma Export (C, u00041, "system__wch_conB"); u00042 : constant Version_32 := 16#785be258#; pragma Export (C, u00042, "system__wch_conS"); u00043 : constant Version_32 := 16#9721e840#; pragma Export (C, u00043, "system__wch_stwB"); u00044 : constant Version_32 := 16#554ace59#; pragma Export (C, u00044, "system__wch_stwS"); u00045 : constant Version_32 := 16#b96cfbef#; pragma Export (C, u00045, "system__wch_cnvB"); u00046 : constant Version_32 := 16#77ec58ab#; pragma Export (C, u00046, "system__wch_cnvS"); u00047 : constant Version_32 := 16#4be8ce1b#; pragma Export (C, u00047, "interfacesS"); u00048 : constant Version_32 := 16#ece6fdb6#; pragma Export (C, u00048, "system__wch_jisB"); u00049 : constant Version_32 := 16#f79c418a#; pragma Export (C, u00049, "system__wch_jisS"); u00050 : constant Version_32 := 16#c1a106e2#; pragma Export (C, u00050, "ada__text_ioB"); u00051 : constant Version_32 := 16#8d734ca7#; pragma Export (C, u00051, "ada__text_ioS"); u00052 : constant Version_32 := 16#10558b11#; pragma Export (C, u00052, "ada__streamsB"); u00053 : constant Version_32 := 16#2e6701ab#; pragma Export (C, u00053, "ada__streamsS"); u00054 : constant Version_32 := 16#db5c917c#; pragma Export (C, u00054, "ada__io_exceptionsS"); u00055 : constant Version_32 := 16#920eada5#; pragma Export (C, u00055, "ada__tagsB"); u00056 : constant Version_32 := 16#13ca27f3#; pragma Export (C, u00056, "ada__tagsS"); u00057 : constant Version_32 := 16#c3335bfd#; pragma Export (C, u00057, "system__htableB"); u00058 : constant Version_32 := 16#e7e47360#; pragma Export (C, u00058, "system__htableS"); u00059 : constant Version_32 := 16#089f5cd0#; pragma Export (C, u00059, "system__string_hashB"); u00060 : constant Version_32 := 16#45ba181e#; pragma Export (C, u00060, "system__string_hashS"); u00061 : constant Version_32 := 16#fe7e644a#; pragma Export (C, u00061, "system__unsigned_typesS"); u00062 : constant Version_32 := 16#06052bd0#; pragma Export (C, u00062, "system__val_lluB"); u00063 : constant Version_32 := 16#848c3338#; pragma Export (C, u00063, "system__val_lluS"); u00064 : constant Version_32 := 16#27b600b2#; pragma Export (C, u00064, "system__val_utilB"); u00065 : constant Version_32 := 16#cf867674#; pragma Export (C, u00065, "system__val_utilS"); u00066 : constant Version_32 := 16#d1060688#; pragma Export (C, u00066, "system__case_utilB"); u00067 : constant Version_32 := 16#472fa95d#; pragma Export (C, u00067, "system__case_utilS"); u00068 : constant Version_32 := 16#84a27f0d#; pragma Export (C, u00068, "interfaces__c_streamsB"); u00069 : constant Version_32 := 16#a06e9ee4#; pragma Export (C, u00069, "interfaces__c_streamsS"); u00070 : constant Version_32 := 16#13b71684#; pragma Export (C, u00070, "system__crtlS"); u00071 : constant Version_32 := 16#f1dc49a7#; pragma Export (C, u00071, "system__file_ioB"); u00072 : constant Version_32 := 16#c45721ef#; pragma Export (C, u00072, "system__file_ioS"); u00073 : constant Version_32 := 16#cf417de3#; pragma Export (C, u00073, "ada__finalizationS"); u00074 : constant Version_32 := 16#95817ed8#; pragma Export (C, u00074, "system__finalization_rootB"); u00075 : constant Version_32 := 16#2cd4b31a#; pragma Export (C, u00075, "system__finalization_rootS"); u00076 : constant Version_32 := 16#769e25e6#; pragma Export (C, u00076, "interfaces__cB"); u00077 : constant Version_32 := 16#61e3d2ff#; pragma Export (C, u00077, "interfaces__cS"); u00078 : constant Version_32 := 16#b97322e0#; pragma Export (C, u00078, "system__os_libB"); u00079 : constant Version_32 := 16#dc0cac3f#; pragma Export (C, u00079, "system__os_libS"); u00080 : constant Version_32 := 16#1a817b8e#; pragma Export (C, u00080, "system__stringsB"); u00081 : constant Version_32 := 16#1d99d1ec#; pragma Export (C, u00081, "system__stringsS"); u00082 : constant Version_32 := 16#9eb95a22#; pragma Export (C, u00082, "system__file_control_blockS"); u00083 : constant Version_32 := 16#f6fdca1c#; pragma Export (C, u00083, "ada__text_io__integer_auxB"); u00084 : constant Version_32 := 16#b9793d30#; pragma Export (C, u00084, "ada__text_io__integer_auxS"); u00085 : constant Version_32 := 16#181dc502#; pragma Export (C, u00085, "ada__text_io__generic_auxB"); u00086 : constant Version_32 := 16#a6c327d3#; pragma Export (C, u00086, "ada__text_io__generic_auxS"); u00087 : constant Version_32 := 16#18d57884#; pragma Export (C, u00087, "system__img_biuB"); u00088 : constant Version_32 := 16#385cec07#; pragma Export (C, u00088, "system__img_biuS"); u00089 : constant Version_32 := 16#e7d8734f#; pragma Export (C, u00089, "system__img_llbB"); u00090 : constant Version_32 := 16#799bfcf9#; pragma Export (C, u00090, "system__img_llbS"); u00091 : constant Version_32 := 16#9777733a#; pragma Export (C, u00091, "system__img_lliB"); u00092 : constant Version_32 := 16#7269955b#; pragma Export (C, u00092, "system__img_lliS"); u00093 : constant Version_32 := 16#0e8808d4#; pragma Export (C, u00093, "system__img_llwB"); u00094 : constant Version_32 := 16#d0f7df6f#; pragma Export (C, u00094, "system__img_llwS"); u00095 : constant Version_32 := 16#428b07f8#; pragma Export (C, u00095, "system__img_wiuB"); u00096 : constant Version_32 := 16#561d6b95#; pragma Export (C, u00096, "system__img_wiuS"); u00097 : constant Version_32 := 16#7ebd8839#; pragma Export (C, u00097, "system__val_intB"); u00098 : constant Version_32 := 16#2b83eab5#; pragma Export (C, u00098, "system__val_intS"); u00099 : constant Version_32 := 16#b44f9ae7#; pragma Export (C, u00099, "system__val_unsB"); u00100 : constant Version_32 := 16#eed68971#; pragma Export (C, u00100, "system__val_unsS"); u00101 : constant Version_32 := 16#b3aa7b17#; pragma Export (C, u00101, "system__val_lliB"); u00102 : constant Version_32 := 16#f902262a#; pragma Export (C, u00102, "system__val_lliS"); u00103 : constant Version_32 := 16#84ad4a42#; pragma Export (C, u00103, "ada__numericsS"); u00104 : constant Version_32 := 16#0ab1cacb#; pragma Export (C, u00104, "system__random_numbersB"); u00105 : constant Version_32 := 16#b163ec63#; pragma Export (C, u00105, "system__random_numbersS"); u00106 : constant Version_32 := 16#eef535cd#; pragma Export (C, u00106, "system__img_unsB"); u00107 : constant Version_32 := 16#618a58bd#; pragma Export (C, u00107, "system__img_unsS"); u00108 : constant Version_32 := 16#7cd2c459#; pragma Export (C, u00108, "system__random_seedB"); u00109 : constant Version_32 := 16#296b75a2#; pragma Export (C, u00109, "system__random_seedS"); u00110 : constant Version_32 := 16#5ec405a9#; pragma Export (C, u00110, "ada__calendarB"); u00111 : constant Version_32 := 16#e67a5d0a#; pragma Export (C, u00111, "ada__calendarS"); u00112 : constant Version_32 := 16#d083f760#; pragma Export (C, u00112, "system__os_primitivesB"); u00113 : constant Version_32 := 16#e9a9d1fc#; pragma Export (C, u00113, "system__os_primitivesS"); u00114 : constant Version_32 := 16#58e7cff7#; pragma Export (C, u00114, "system__memoryB"); u00115 : constant Version_32 := 16#3a5ba6be#; pragma Export (C, u00115, "system__memoryS"); -- BEGIN ELABORATION ORDER -- ada%s -- interfaces%s -- system%s -- system.case_util%s -- system.case_util%b -- system.htable%s -- system.img_int%s -- system.img_int%b -- system.img_lli%s -- system.img_lli%b -- system.os_primitives%s -- system.os_primitives%b -- system.parameters%s -- system.parameters%b -- system.crtl%s -- interfaces.c_streams%s -- interfaces.c_streams%b -- system.standard_library%s -- system.exceptions_debug%s -- system.exceptions_debug%b -- system.storage_elements%s -- system.storage_elements%b -- system.stack_checking%s -- system.stack_checking%b -- system.string_hash%s -- system.string_hash%b -- system.htable%b -- system.strings%s -- system.strings%b -- system.os_lib%s -- system.traceback_entries%s -- system.traceback_entries%b -- ada.exceptions%s -- system.soft_links%s -- system.unsigned_types%s -- system.img_biu%s -- system.img_biu%b -- system.img_llb%s -- system.img_llb%b -- system.img_llw%s -- system.img_llw%b -- system.img_uns%s -- system.img_uns%b -- system.img_wiu%s -- system.img_wiu%b -- system.val_int%s -- system.val_lli%s -- system.val_llu%s -- system.val_uns%s -- system.val_util%s -- system.val_util%b -- system.val_uns%b -- system.val_llu%b -- system.val_lli%b -- system.val_int%b -- system.wch_con%s -- system.wch_con%b -- system.wch_cnv%s -- system.wch_jis%s -- system.wch_jis%b -- system.wch_cnv%b -- system.wch_stw%s -- system.wch_stw%b -- ada.exceptions.last_chance_handler%s -- ada.exceptions.last_chance_handler%b -- ada.exceptions.traceback%s -- system.address_image%s -- system.exception_table%s -- system.exception_table%b -- ada.io_exceptions%s -- ada.numerics%s -- ada.tags%s -- ada.streams%s -- ada.streams%b -- interfaces.c%s -- system.exceptions%s -- system.exceptions%b -- system.exceptions.machine%s -- system.file_control_block%s -- system.file_io%s -- system.finalization_root%s -- system.finalization_root%b -- ada.finalization%s -- ada.calendar%s -- ada.calendar%b -- system.memory%s -- system.memory%b -- system.standard_library%b -- system.random_numbers%s -- system.random_seed%s -- system.random_seed%b -- system.secondary_stack%s -- system.file_io%b -- interfaces.c%b -- ada.tags%b -- system.soft_links%b -- system.os_lib%b -- system.secondary_stack%b -- system.random_numbers%b -- system.address_image%b -- ada.exceptions.traceback%b -- system.traceback%s -- system.traceback%b -- system.traceback.symbolic%s -- system.traceback.symbolic%b -- ada.exceptions%b -- ada.text_io%s -- ada.text_io%b -- ada.text_io.generic_aux%s -- ada.text_io.generic_aux%b -- ada.text_io.integer_aux%s -- ada.text_io.integer_aux%b -- ada.integer_text_io%s -- ada.integer_text_io%b -- sorting_exercise%b -- END ELABORATION ORDER end ada_main;
AdaCore/Ada_Drivers_Library
Ada
2,508
adb
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2019, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with Feather_STM32F405.LED; procedure Main is begin loop Feather_STM32F405.LED.Toggle; delay 0.5; end loop; end Main;
zhmu/ananas
Ada
954
ads
package VFA1_Pkg is type Int8_t is mod 2**8; type Int is new Integer; pragma Volatile_Full_Access (Int); Counter1 : Int; Counter2 : Integer; pragma Volatile_Full_Access (Counter2); type Arr is array (1 .. 4) of Int8_t; for Arr'Alignment use 4; pragma Volatile_Full_Access (Arr); Timer1 : Arr; Timer2 : array (1 .. 4) of Int8_t; for Timer2'Alignment use 4; pragma Volatile_Full_Access (Timer2); type Rec is record A : Short_Integer; B : Short_Integer; end record; type Rec_VFA is new Rec; pragma Volatile_Full_Access (Rec_VFA); Buffer1 : Rec_VFA; Buffer2 : Rec; pragma Volatile_Full_Access (Buffer2); type Code is record R : Int8_t; I : Int8_t; end record; pragma Volatile_Full_Access (Code); type CArr is array (1 .. 2) of Code; pragma Volatile_Full_Access (CArr); Mixer1 : Carr; Mixer2 : array (1 .. 2) of Code; pragma Volatile_Full_Access (Mixer2); end VFA1_Pkg;
1Crazymoney/LearnAda
Ada
197
ads
generic type Elem is limited private; type Index is (<>); type Tomb is array (Index range <>) of Elem; with procedure Swap (A, B: in out Elem); procedure Reversal (T: in out Tomb);
stcarrez/ada-asf
Ada
8,165
adb
----------------------------------------------------------------------- -- html.lists -- List of items -- Copyright (C) 2009, 2010, 2013, 2014, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Log.Loggers; with Util.Beans.Basic; with ASF.Components.Base; package body ASF.Components.Html.Lists is use type EL.Objects.Data_Type; Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("ASF.Components.Html.Lists"); function Get_Item_Layout (List_Layout : in String; Item_Class : in String) return String; -- ------------------------------ -- Get the list layout to use. The default is to use no layout or a div if some CSS style -- is applied on the list or some specific list ID must be generated. Possible layout values -- include: -- "simple" : the list is rendered as is or as a div with each children as is, -- "unorderedList" : the list is rendered as an HTML ul/li list, -- "orderedList" : the list is rendered as an HTML ol/li list. -- ------------------------------ function Get_Layout (UI : in UIList; Class : in String; Context : in Faces_Context'Class) return String is Value : constant EL.Objects.Object := UI.Get_Attribute (Context, "layout"); Layout : constant String := EL.Objects.To_String (Value); begin if Layout = "orderedList" or else Layout = "ordered" then return "ol"; elsif Layout = "unorderedList" or else Layout = "unordered" then return "ul"; elsif Class'Length > 0 or else not UI.Is_Generated_Id then return "div"; else return ""; end if; end Get_Layout; -- ------------------------------ -- Get the item layout according to the list layout and the item class (if any). -- ------------------------------ function Get_Item_Layout (List_Layout : in String; Item_Class : in String) return String is begin if List_Layout'Length = 2 then return "li"; elsif Item_Class'Length > 0 then return "div"; else return ""; end if; end Get_Item_Layout; -- ------------------------------ -- Get the value to write on the output. -- ------------------------------ function Get_Value (UI : in UIList) return EL.Objects.Object is begin return UI.Get_Attribute (UI.Get_Context.all, "value"); end Get_Value; -- ------------------------------ -- Set the value to write on the output. -- ------------------------------ procedure Set_Value (UI : in out UIList; Value : in EL.Objects.Object) is begin null; end Set_Value; -- ------------------------------ -- Get the variable name -- ------------------------------ function Get_Var (UI : in UIList) return String is Var : constant EL.Objects.Object := UI.Get_Attribute (UI.Get_Context.all, "var"); begin return EL.Objects.To_String (Var); end Get_Var; -- ------------------------------ -- Encode an item of the list with the given item layout and item class. -- ------------------------------ procedure Encode_Item (UI : in UIList; Item_Layout : in String; Item_Class : in String; Context : in out Faces_Context'Class) is Writer : constant Response_Writer_Access := Context.Get_Response_Writer; begin if Item_Layout'Length > 0 then Writer.Start_Element (Item_Layout); end if; if Item_Class'Length > 0 then Writer.Write_Attribute ("class", Item_Class); end if; Base.UIComponent (UI).Encode_Children (Context); if Item_Layout'Length > 0 then Writer.End_Element (Item_Layout); end if; end Encode_Item; overriding procedure Encode_Children (UI : in UIList; Context : in out Faces_Context'Class) is begin if not UI.Is_Rendered (Context) then return; end if; declare Value : EL.Objects.Object := Get_Value (UI); Kind : constant EL.Objects.Data_Type := EL.Objects.Get_Type (Value); Name : constant String := UI.Get_Var; Bean : access Util.Beans.Basic.Readonly_Bean'Class; Is_Reverse : constant Boolean := UI.Get_Attribute ("reverse", Context, False); List : Util.Beans.Basic.List_Bean_Access; Count : Natural; begin -- Check that we have a List_Bean but do not complain if we have a null value. if Kind /= EL.Objects.TYPE_BEAN then if Kind /= EL.Objects.TYPE_NULL then ASF.Components.Base.Log_Error (UI, "Invalid list bean (found a {0})", EL.Objects.Get_Type_Name (Value)); end if; return; end if; Bean := EL.Objects.To_Bean (Value); if Bean = null or else not (Bean.all in Util.Beans.Basic.List_Bean'Class) then ASF.Components.Base.Log_Error (UI, "Invalid list bean: " & "it does not implement 'List_Bean' interface"); return; end if; List := Util.Beans.Basic.List_Bean'Class (Bean.all)'Unchecked_Access; Count := List.Get_Count; if Count /= 0 then declare Class : constant String := UI.Get_Attribute (STYLE_CLASS_ATTR_NAME, Context, ""); Item_Class : constant String := UI.Get_Attribute (ITEM_STYLE_CLASS_ATTR_NAME, Context, ""); Layout : constant String := UI.Get_Layout (Class, Context); Writer : constant Response_Writer_Access := Context.Get_Response_Writer; Item_Layout : constant String := Get_Item_Layout (Layout, Item_Class); begin if Layout'Length > 0 then Writer.Start_Element (Layout); end if; if not UI.Is_Generated_Id then Writer.Write_Attribute ("id", UI.Get_Client_Id); end if; if Class'Length > 0 then Writer.Write_Attribute ("class", Class); end if; if Is_Reverse then for I in reverse 1 .. Count loop List.Set_Row_Index (I); Value := List.Get_Row; Context.Set_Attribute (Name, Value); Log.Debug ("Set variable {0}", Name); UI.Encode_Item (Item_Layout, Item_Class, Context); end loop; else for I in 1 .. Count loop List.Set_Row_Index (I); Value := List.Get_Row; Context.Set_Attribute (Name, Value); Log.Debug ("Set variable {0}", Name); UI.Encode_Item (Item_Layout, Item_Class, Context); end loop; end if; if Layout'Length > 0 then Writer.End_Element (Layout); end if; end; end if; end; end Encode_Children; end ASF.Components.Html.Lists;
reznikmm/matreshka
Ada
4,785
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Table_Filter_Set_Item_Elements; package Matreshka.ODF_Table.Filter_Set_Item_Elements is type Table_Filter_Set_Item_Element_Node is new Matreshka.ODF_Table.Abstract_Table_Element_Node and ODF.DOM.Table_Filter_Set_Item_Elements.ODF_Table_Filter_Set_Item with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Table_Filter_Set_Item_Element_Node; overriding function Get_Local_Name (Self : not null access constant Table_Filter_Set_Item_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Table_Filter_Set_Item_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Table_Filter_Set_Item_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Table_Filter_Set_Item_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Table.Filter_Set_Item_Elements;
reznikmm/matreshka
Ada
4,590
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Svg.V_Hanging_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Svg_V_Hanging_Attribute_Node is begin return Self : Svg_V_Hanging_Attribute_Node do Matreshka.ODF_Svg.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Svg_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Svg_V_Hanging_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.V_Hanging_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Svg_URI, Matreshka.ODF_String_Constants.V_Hanging_Attribute, Svg_V_Hanging_Attribute_Node'Tag); end Matreshka.ODF_Svg.V_Hanging_Attributes;
reznikmm/matreshka
Ada
10,326
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Tools 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 Ada.Wide_Wide_Text_IO; with AMF.URI_Stores; with AMF.Internals.XMI_Handlers; -- XXX Internal structures are used now because of absence of user's API. with Generator.Arguments; package body Generator.Type_Mapping.Handlers is use Ada.Wide_Wide_Text_IO; Literal_Tag_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("literal"); Mapping_Tag_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("mapping"); Type_Tag_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("type"); Ada_Package_Attribute_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("adaPackage"); Ada_Literal_Attribute_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("adaLiteral"); Ada_Type_Attribute_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("adaType"); Internal_Ada_Package_Attribute_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("internalAdaPackage"); Internal_Ada_Type_Attribute_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("internalAdaType"); Member_Name_Attribute_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("memberName"); Member_Kind_Name_Attribute_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("memberKindName"); Representation_Attribute_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("representation"); URI_Attribute_Name : constant League.Strings.Universal_String := League.Strings.To_Universal_String ("uri"); function Resolve (URI : League.Strings.Universal_String) return AMF.CMOF.Elements.CMOF_Element_Access; -- Resolves element. ------------------ -- Error_String -- ------------------ overriding function Error_String (Self : Mapping_Handler) return League.Strings.Universal_String is begin return League.Strings.Empty_Universal_String; end Error_String; ------------- -- Resolve -- ------------- function Resolve (URI : League.Strings.Universal_String) return AMF.CMOF.Elements.CMOF_Element_Access is use type AMF.URI_Stores.URI_Store_Access; Separator : constant Natural := URI.Index ('#'); Extent : constant AMF.URI_Stores.URI_Store_Access := AMF.Internals.XMI_Handlers.Extent (URI.Slice (1, Separator - 1)); Element : AMF.CMOF.Elements.CMOF_Element_Access; begin if Extent /= null then Element := AMF.CMOF.Elements.CMOF_Element_Access (Extent.Element (URI.Slice (Separator + 1, URI.Length))); end if; return Element; end Resolve; ------------------- -- Start_Element -- ------------------- overriding procedure Start_Element (Self : in out Mapping_Handler; Namespace_URI : League.Strings.Universal_String; Local_Name : League.Strings.Universal_String; Qualified_Name : League.Strings.Universal_String; Attributes : XML.SAX.Attributes.SAX_Attributes; Success : in out Boolean) is use type League.Strings.Universal_String; use type AMF.CMOF.Elements.CMOF_Element_Access; begin if Qualified_Name = Literal_Tag_Name then declare Element : AMF.CMOF.Elements.CMOF_Element_Access := Resolve (Attributes.Value (URI_Attribute_Name)); Mapping : Enumeration_Literal_Mapping_Access; begin if Element = null then if Generator.Arguments.Verbose then Put_Line (Standard_Error, "Element '" & Attributes.Value (URI_Attribute_Name).To_Wide_Wide_String & "' is not found, ignoring"); end if; else if Literal.Contains (Element) then Mapping := Literal.Element (Element); else Mapping := new Enumeration_Literal_Mapping; Literal.Insert (Element, Mapping); end if; Mapping.Ada_Name := Attributes.Value (Ada_Literal_Attribute_Name); end if; end; elsif Qualified_Name = Mapping_Tag_Name then declare Representation : constant Representation_Kinds := Representation_Kinds'Wide_Wide_Value (Attributes.Value (Representation_Attribute_Name).To_Wide_Wide_String); begin if Self.Mapping = null then return; end if; if Self.Mapping.Mapping (Representation) = null then Self.Mapping.Mapping (Representation) := new Representation_Mapping; end if; Self.Mapping.Mapping (Representation).Has_Ada_Package := Attributes.Is_Specified (Ada_Package_Attribute_Name); Self.Mapping.Mapping (Representation).Ada_Package := Attributes.Value (Ada_Package_Attribute_Name); Self.Mapping.Mapping (Representation).Ada_Type := Attributes.Value (Ada_Type_Attribute_Name); Self.Mapping.Mapping (Representation).Has_Internal_Ada_Package := Attributes.Is_Specified (Internal_Ada_Package_Attribute_Name); Self.Mapping.Mapping (Representation).Internal_Ada_Package := Attributes.Value (Internal_Ada_Package_Attribute_Name); Self.Mapping.Mapping (Representation).Internal_Ada_Type := Attributes.Value (Internal_Ada_Type_Attribute_Name); Self.Mapping.Mapping (Representation).Member_Name := Attributes.Value (Member_Name_Attribute_Name); Self.Mapping.Mapping (Representation).Member_Kind_Name := Attributes.Value (Member_Kind_Name_Attribute_Name); end; elsif Qualified_Name = Type_Tag_Name then Self.Element := Resolve (Attributes.Value (URI_Attribute_Name)); Self.Mapping := null; if Self.Element = null then if Generator.Arguments.Verbose then Put_Line (Standard_Error, "Element '" & Attributes.Value (URI_Attribute_Name).To_Wide_Wide_String & "' is not found, ignoring"); end if; else Self.Mapping := new Type_Mapping; Mapping.Insert (Self.Element, Self.Mapping); end if; end if; end Start_Element; end Generator.Type_Mapping.Handlers;
reznikmm/matreshka
Ada
5,203
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- XML Processor -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Ada.Containers.Hashed_Maps; with League.Strings.Hash; with Matreshka.XML_Schema.AST.Types; package Matreshka.XML_Schema.AST.Models is pragma Preelaborate; package Namespace_Maps is new Ada.Containers.Hashed_Maps (League.Strings.Universal_String, Matreshka.XML_Schema.AST.Namespace_Access, League.Strings.Hash, League.Strings."=", Matreshka.XML_Schema.AST."="); type Model_Node is new Abstract_Node with record Schemas : Types.Schema_Maps.Map; Namespaces : Namespace_Maps.Map; end record; function Get_Namespace (Self : not null access constant Model_Node'Class; Namespace : League.Strings.Universal_String) return Matreshka.XML_Schema.AST.Namespace_Access; -- Returns namespace item or null if such namespace doesn't exists. overriding procedure Enter_Node (Self : not null access Model_Node; Visitor : in out Matreshka.XML_Schema.Visitors.Abstract_Visitor'Class; Control : in out Matreshka.XML_Schema.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Leave_Node (Self : not null access Model_Node; Visitor : in out Matreshka.XML_Schema.Visitors.Abstract_Visitor'Class; Control : in out Matreshka.XML_Schema.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Visit_Node (Self : not null access Model_Node; Iterator : in out Matreshka.XML_Schema.Visitors.Abstract_Iterator'Class; Visitor : in out Matreshka.XML_Schema.Visitors.Abstract_Visitor'Class; Control : in out Matreshka.XML_Schema.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of iterator interface. end Matreshka.XML_Schema.AST.Models;
msrLi/portingSources
Ada
1,446
adb
-- Copyright 2010-2014 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; package body Mixed is -- We are importing symbols from foo.o, so make sure this object file -- gets linked in. Pragma Linker_Options ("foo.o"); type Color is (Red, Green, Blue); procedure C_Function; pragma Import (C, C_Function, "c_function"); procedure Callme; pragma Export (C, Callme, "callme"); procedure Break_Me (Light : Color) is begin Put_Line ("Light: " & Color'Image (Light)); -- STOP end Break_Me; procedure Callme is begin Break_Me (Red); Break_Me (Green); Break_Me (Blue); end Callme; procedure Start_Test is begin -- Call C_Function, which will call Callme. C_Function; end Start_Test; end Mixed;
AdaCore/training_material
Ada
819
ads
--:::::::::: --room.ads --:::::::::: with Chop; with Phil; with Society; package Room is -- Dining Philosophers - Ada 95 edition -- Room.Maitre_D is responsible for assigning seats at the -- table, "left" and "right" chopsticks, and for reporting -- interesting events to the outside world. -- Michael B. Feldman, The George Washington University, -- July, 1995. Table_Size : constant := 5; subtype Table_Type is Positive range 1 .. Table_Size; Sticks : array (Table_Type) of Chop.Stick; task Maitre_D is entry Start_Serving; entry Report_State (Which_Phil : in Society.Unique_DNA_Codes; State : in Phil.States; How_Long : in Natural := 0; Which_Meal : in Natural := 0); end Maitre_D; end Room;
reznikmm/matreshka
Ada
3,799
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Draw_Start_Line_Spacing_Vertical_Attributes is pragma Preelaborate; type ODF_Draw_Start_Line_Spacing_Vertical_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Draw_Start_Line_Spacing_Vertical_Attribute_Access is access all ODF_Draw_Start_Line_Spacing_Vertical_Attribute'Class with Storage_Size => 0; end ODF.DOM.Draw_Start_Line_Spacing_Vertical_Attributes;
reznikmm/matreshka
Ada
16,312
adb
-- Module : string_pkg.ada -- Component of : common_library -- Version : 1.2 -- Date : 11/21/86 16:35:20 -- SCCS File : disk21~/rschm/hasee/sccs/common_library/sccs/sxstring_pkg.ada -- $Source: /nosc/work/abstractions/string/RCS/string.bdy,v $ -- $Revision: 1.3 $ -- $Date: 85/02/01 10:58:51 $ -- $Author: ron $ -- $Source: /nosc/work/abstractions/string/RCS/string.bdy,v $ -- $Revision: 1.3 $ -- $Date: 85/02/01 10:58:51 $ -- $Author: ron $ with unchecked_deallocation; with lists, stack_pkg; package body string_pkg is SCCS_ID : constant String := "@(#) string_pkg.ada, Version 1.2"; --| Overview: --| The implementation for most operations is fairly straightforward. --| The interesting aspects involve the allocation and deallocation of --| heap space. This is done as follows: --| --| 1. A stack of accesses to lists of string_type values is set up --| so that the top of the stack always refers to a list of values --| that were allocated since the last invocation of mark. --| The stack is called scopes, referring to the dynamic scopes --| defined by the invocations of mark and release. --| There is an implicit invocation of mark when the --| package body is elaborated; this is implemented with an explicit --| invocation in the package initialization code. --| --| 2. At each invocation of mark, a pointer to an empty list --| is pushed onto the stack. --| --| 3. At each invocation of release, all of the values in the --| list referred to by the pointer at the top of the stack are --| returned to the heap. Then the list, and the pointer to it, --| are returned to the heap. Finally, the stack is popped. package string_list_pkg is new lists(string_type); subtype string_list is string_list_pkg.list; type string_list_ptr is access string_list; package scope_stack_pkg is new stack_pkg(string_list_ptr); subtype scope_stack is scope_stack_pkg.stack; use string_list_pkg; use scope_stack_pkg; scopes: scope_stack; -- See package body overview. -- Utility functions/procedures: function enter(s: string_type) return string_type; --| Raises: illegal_alloc --| Effects: --| Stores s, the address of s.all, in current scope list (top(scopes)), --| and returns s. Useful for functions that create and return new --| string_type values. --| Raises illegal_alloc if the scopes stack is empty. function match_string(s1, s2: string; start: positive := 1) return natural; --| Raises: no_match --| Effects: --| Returns the minimum index, i, in s1'range such that --| s1(i..i + s2'length - 1) = s2. Returns 0 if no such index. --| Requires: --| s1'first = 1. -- Constructors: function Empty_String return String_Type is begin return Create (""); end Empty_String; function create(s: string) return string_type is subtype constr_str is string(1..s'length); dec_s: constr_str := s; begin return enter(new constr_str'(dec_s)); -- DECada bug; above code (and decl of dec_s) replaces the following: -- return enter(new constr_str'(s)); end create; function "&"(s1, s2: string_type) return string_type is begin if is_empty(s1) then return enter(make_persistent(s2)); end if; if is_empty(s2) then return enter(make_persistent(s1)); end if; return create(s1.all & s2.all); end "&"; function "&"(s1: string_type; s2: string) return string_type is begin if s1 = null then return create(s2); end if; return create(s1.all & s2); end "&"; function "&"(s1: string; s2: string_type) return string_type is begin if s2 = null then return create(s1); end if; return create(s1 & s2.all); end "&"; function substr(s: string_type; i: positive; len: natural) return string_type is begin if len = 0 then return null; end if; return create(s(i..(i + len - 1))); exception when constraint_error => -- on array fetch or null deref raise bounds; end substr; function splice(s: string_type; i: positive; len: natural) return string_type is begin if len = 0 then return enter(make_persistent(s)); end if; if i + len - 1 > length(s) then raise bounds; end if; return create(s(1..(i - 1)) & s((i + len)..length(s))); end splice; function insert(s1, s2: string_type; i: positive) return string_type is begin if i > length(s1) then raise bounds; end if; if is_empty(s2) then return create(s1.all); end if; return create(s1(1..(i - 1)) & s2.all & s1(i..s1'last)); end insert; function insert(s1: string_type; s2: string; i: positive) return string_type is begin if i > length(s1) then raise bounds; end if; return create(s1(1..(i - 1)) & s2 & s1(i..s1'last)); end insert; function insert(s1: string; s2: string_type; i: positive) return string_type is begin if not (i in s1'range) then raise bounds; end if; if s2 = null then return create(s1); end if; return create(s1(s1'first..(i - 1)) & s2.all & s1(i..s1'last)); end insert; procedure lc(c: in out character) is begin if ('A' <= c) and then (c <= 'Z') then c := character'val(character'pos(c) - character'pos('A') + character'pos('a')); end if; end lc; procedure uc(c: in out character) is begin if ('a' <= c) and then (c <= 'z') then c := character'val(character'pos(c) - character'pos('a') + character'pos('A')); end if; end uc; function lower(s: string) return string_type is s2: string_type := create(s); begin for i in s2'range loop lc(s2(i)); end loop; return s2; end lower; function lower(s: string_type) return string_type is begin if s = null then return null; end if; return lower(s.all); end lower; function Mixed (S: String) return String_Type is Mixed_String : String_Type := Create (S); begin if Mixed_String'Length /= 0 then UC (Mixed_String(Mixed_String'First)); for i in Mixed_String'First + 1 .. Mixed_String'Last loop if Mixed_String(i-1) = '_' or else Mixed_String(i-1) = '.' then UC (Mixed_String(i)); else LC (Mixed_String(i)); end if; end loop; return Mixed_String; else return Empty_String; end if; end Mixed; function Mixed (S : String_Type) return String_Type is begin if s = null then return Empty_String; else return Mixed (S.all); end if; end Mixed; function upper(s: string) return string_type is s2: string_type := create(s); begin for i in s2'range loop uc(s2(i)); end loop; return s2; end upper; function upper(s: string_type) return string_type is begin if s = null then return null; end if; return upper(s.all); end upper; -- Heap Management: function make_persistent(s: string_type) return string_type is subtype constr_str is string(1..length(s)); begin if s = null or else s.all = "" then return null; else return new constr_str'(s.all); end if; end make_persistent; function make_persistent(s: string) return string_type is subtype constr_str is string(1..s'length); begin if s = "" then return null; else return new constr_str'(s); end if; end make_persistent; procedure real_flush is new unchecked_deallocation(string, string_type); --| Effect: --| Return space used by argument to heap. Does nothing if null. --| Notes: --| This procedure is actually the body for the flush procedure, --| but a generic instantiation cannot be used as a body for another --| procedure. You tell me why. procedure flush(s: in out string_type) is begin if s /= null then real_flush(s); end if; -- Actually, the if isn't needed; however, DECada compiler chokes -- on deallocation of null. end flush; procedure mark is begin push(scopes, new string_list'(create)); end mark; procedure release is procedure flush_list_ptr is new unchecked_deallocation(string_list, string_list_ptr); iter: string_list_pkg.ListIter; top_list: string_list_ptr; s: string_type; begin pop(scopes, top_list); iter := MakeListIter(top_list.all); while more(iter) loop next(iter, s); flush(s); -- real_flush is bad, DECada bug -- real_flush(s); end loop; destroy(top_list.all); flush_list_ptr(top_list); exception when empty_stack => raise illegal_dealloc; end release; -- Queries: function is_empty(s: string_type) return boolean is begin return (s = null) or else (s.all = ""); end is_empty; function length(s: string_type) return natural is begin if s = null then return 0; end if; return(s.all'length); end length; function value(s: string_type) return string is subtype null_range is positive range 1..0; subtype null_string is string(null_range); begin if s = null then return null_string'(""); end if; return s.all; end value; function fetch(s: string_type; i: positive) return character is begin if is_empty(s) or else (not (i in s'range)) then raise bounds; end if; return s(i); end fetch; function equal(s1, s2: string_type) return boolean is begin if is_empty(s1) then return is_empty(s2); end if; return (s2 /= null) and then (s1.all = s2.all); -- The above code replaces the following. (DECada buggy) -- return s1.all = s2.all; -- exception -- when constraint_error => -- s is null -- return is_empty(s1) and is_empty(s2); end equal; function equal(s1: string_type; s2: string) return boolean is begin if s1 = null then return s2 = ""; end if; return s1.all = s2; end equal; function equal(s1: string; s2: string_type) return boolean is begin if s2 = null then return s1 = ""; end if; return s1 = s2.all; end equal; --|======================================================================== function Equivalent (Left, Right : in String_Type) return Boolean is begin return Equal (Upper (Left), Upper (Right)); end Equivalent; function Equivalent (Left : in String; Right : in String_Type) return Boolean is begin return Equivalent (Create (Left), Right); end Equivalent; function Equivalent (Left : in String_Type; Right : in String) return Boolean is begin return Equivalent (Left, Create (Right)); end Equivalent; --|======================================================================== function "<" (s1: string_type; s2: string_type) return boolean is begin if is_empty(s1) then return (not is_empty(s2)); else return (s1.all < s2); end if; -- Got rid of the following code: (Think that DECada is buggy) --return s1.all < s2.all; --exception --when constraint_error => -- on null deref --return (not is_empty(s2)); -- one of them must be empty end "<"; function "<"(s1: string_type; s2: string) return boolean is begin if s1 = null then return s2 /= ""; end if; return s1.all < s2; end "<"; function "<"(s1: string; s2: string_type) return boolean is begin if s2 = null then return false; end if; return s1 < s2.all; end "<"; function "<="(s1: string_type; s2: string_type) return boolean is begin if is_empty(s1) then return true; end if; return (s1.all <= s2); -- Replaces the following: (I think DECada is buggy) --return s1.all <= s2.all; --exception --when constraint_error => -- on null deref --return is_empty(s1); -- one must be empty, so s1<=s2 iff s1 = "" end "<="; function "<="(s1: string_type; s2: string) return boolean is begin if s1 = null then return true; end if; return s1.all <= s2; end "<="; function "<="(s1: string; s2: string_type) return boolean is begin if s2 = null then return s1 = ""; end if; return s1 <= s2.all; end "<="; function match_c(s: string_type; c: character; start: positive := 1) return natural is begin if s = null then return 0; end if; for i in start..s.all'last loop if s(i) = c then return i; end if; end loop; return 0; end match_c; function match_not_c(s: string_type; c: character; start: positive := 1) return natural is begin if s = null then return 0; end if; for i in start..s.all'last loop if s(i) /= c then return i; end if; end loop; return 0; end match_not_c; function match_s(s1, s2: string_type; start: positive := 1) return natural is begin if (s1 = null) or else (s2 = null) then return 0; end if; return match_string(s1.all, s2.all, start); end match_s; function match_s(s1: string_type; s2: string; start: positive := 1) return natural is begin if s1 = null then return 0; end if; return match_string(s1.all, s2, start); end match_s; function match_any(s, any: string_type; start: positive := 1) return natural is begin if any = null then raise any_empty; end if; return match_any(s, any.all, start); end match_any; function match_any(s: string_type; any: string; start: positive := 1) return natural is begin if any = "" then raise any_empty; end if; if s = null then return 0; end if; for i in start..s.all'last loop for j in any'range loop if s(i) = any(j) then return i; end if; end loop; end loop; return 0; end match_any; function match_none(s, none: string_type; start: positive := 1) return natural is begin if is_empty(s) then return 0; end if; if is_empty(none) then return 1; end if; return match_none(s, none.all, start); end match_none; function match_none(s: string_type; none: string; start: positive := 1) return natural is found: boolean; begin if is_empty(s) then return 0; end if; for i in start..s.all'last loop found := true; for j in none'range loop if s(i) = none(j) then found := false; exit; end if; end loop; if found then return i; end if; end loop; return 0; end match_none; -- Utilities: function enter(s: string_type) return string_type is begin -- ATTACHING TO THE END OF THE LIST IS ENTIRELY TOO SLOW AND UNNECESSARY -- top(scopes).all := attach(top(scopes).all, s); top(scopes).all := attach(s, top(scopes).all); return s; exception when empty_stack => raise illegal_alloc; end enter; function match_string(s1, s2: string; start: positive := 1) return natural is offset: natural; begin offset := s2'length - 1; for i in start..(s1'last - offset) loop if s1(i..(i + offset)) = s2 then return i; end if; end loop; return 0; exception when constraint_error => -- on offset := s2'length (= 0) return 0; end match_string; begin -- Initialize the scopes stack with an implicit mark. scopes := create; mark; end string_pkg;
adamkruszewski/qweyboard
Ada
8,569
adb
with String_Helpers; use String_Helpers; with Ada.Finalization; with Ada.Containers.Ordered_Maps; with Ada.Containers.Ordered_Sets; with Interfaces.C; with Interfaces.C.Strings; with Interfaces.C.Pointers; with XLib_H, XTest_H; package body Output_Backend is package C renames Interfaces.C; use type C.Int, C.Unsigned_Long; use XLib_H, XTest_H; -- When we map a key, we map it with (Keysym, Qweyboard_Marker) to indicate -- for ourselves that we have used this key. This is useful in case of -- program crashes or whatever, because we don't need to leak keys. Qweyboard_Marker : C.Unsigned_Long := 16#01fffffe#; package Keysym_To_Keycode is new Ada.Containers.Ordered_Maps (Key_Type => C.Unsigned_Long, Element_Type => C.Int); package Keycode_To_Keysym is new Ada.Containers.Ordered_Maps (Key_Type => C.Int, Element_Type => C.Unsigned_Long); package Keycode_Sets is new Ada.Containers.Ordered_Sets (Element_Type => C.Int); type Key_Mapping is record Keysyms : Keysym_To_Keycode.Map; Keycodes : Keycode_To_Keysym.Map; Available : Keycode_Sets.Set; Recently_Used : Keycode_Sets.Set; end record; type XTest_Data is new Ada.Finalization.Controlled with record Display : Display_Access; Key_Map : Key_Mapping; end record; procedure Fake_Input_String (Display : Display_Access; Key_Map : in out Key_Mapping; Text : Wide_Wide_String); procedure Fake_Input_Keysym (Display : Display_Access; Key_Map : in out Key_Mapping; Keysym : C.Unsigned_Long); function Get_Keycode (Display : Display_Access; Key_Map : in out Key_Mapping; Keysym : C.Unsigned_Long) return C.Int; procedure Update_Mapping (Display : Display_Access; Key_Map : in out Key_Mapping); procedure Fake_Press (Display : Display_Access; Key : C.Int); procedure Finalize (XTest : in out XTest_Data) is I : C.Int; All_Keycodes : Keycode_Sets.Set := Keycode_Sets.Union(XTest.Key_Map.Available, XTest.Key_Map.Recently_Used); No_Symbol : C.Unsigned_Long := 0; Empty_Key : aliased Keysym_Array (0..1) := (others => No_Symbol); begin for Keycode of All_Keycodes loop I := XChangeKeyboardMapping (XTest.Display, Keycode, 2, Empty_Key, 1); I := XSync (XTest.Display, 0); end loop; Log.Warning ("[X11.Output] Closing display"); I := XCloseDisplay (XTest.Display); end; task body Output is XTest : XTest_Data; XTest_Opcode : C.Int; begin Log.Chat ("[X11.Output] Opening display"); XTest.Display := XOpenDisplay (C.Strings.Null_Ptr); Log.Chat ("[X11.Output] Display opened"); declare Ev : C.Int; Err : C.Int; Ext_Name : C.Strings.Chars_Ptr := C.Strings.New_String ("XTEST"); begin Log.Chat ("[X11.Output] Checking for extension"); if XQueryExtension (XTest.Display, Ext_Name, XTest_Opcode, Ev, Err) = 0 then raise EXTENSION_MISSING with "XTest not available, cannot continue"; end if; Log.Chat ("[X11.Output] Extension found, freeing C string"); C.Strings.Free (Ext_Name); Log.Chat ("[X11.Output] C string free'd"); end; Update_Mapping (XTest.Display, XTest.Key_Map); accept Ready_Wait; Log.Chat ("[X11.Output] Entering loop"); loop select accept Enter (Text : Wide_Wide_String; Continues_Word : Boolean) do Log.Chat ("Asked to enter """ & Text & """"); if Continues_Word then Log.Chat ("First erasing space"); Fake_Input_Keysym (XTest.Display, XTest.Key_Map, 16#ff08#); end if; Fake_Input_String (XTest.Display, XTest.Key_Map, Text & " "); end Enter; or accept Erase (Amount : Positive) do Log.Chat ("[X11.Output] Simulating" & W (Positive'Image (Amount)) & " backspace(s)..."); for I in 1 .. Amount loop Fake_Input_Keysym (XTest.Display, XTest.Key_Map, 16#ff08#); end loop; end Erase; or accept Shut_Down; Log.Warning ("Shutting down"); exit; end select; end loop; end Output; procedure Fake_Input_String (Display : Display_Access; Key_Map : in out Key_Mapping; Text : Wide_Wide_String) is function Is_Basic_Latin1 (Letter : Wide_Wide_Character) return Boolean is begin return Wide_Wide_Character'Pos (Letter) >= 16#20# and Wide_Wide_Character'Pos (Letter) <= 16#fe#; end Is_Basic_Latin1; begin Log.Info ("[X11] Outputting """ & Text & """"); for Letter of Text loop if not Is_Basic_Latin1 (Letter) then raise ENCODING_ERROR with "Invalid character in string. Only basic Latin 1 has a simple mapping to Keysyms and that's as much as I'm prepared to deal with right now. Pull requests welcome!"; end if; declare Keysym : C.Unsigned_Long := Wide_Wide_Character'Pos (Letter); begin Fake_Input_Keysym (Display, Key_Map, Keysym); end; end loop; end Fake_Input_String; procedure Fake_Input_Keysym (Display : Display_Access; Key_Map : in out Key_Mapping; Keysym : C.Unsigned_Long) is Key : C.Int := Get_Keycode (Display, Key_Map, Keysym); I : C.Int := 0; begin Fake_Press (Display, Key); end Fake_Input_Keysym; function Get_Keycode (Display : Display_Access; Key_Map : in out Key_Mapping; Keysym : C.Unsigned_Long) return C.Int is I : C.Int; begin if Key_Map.Keysyms.Contains (Keysym) then return Key_Map.Keysyms.Element (Keysym); end if; if Key_Map.Available.Is_Empty then Key_Map.Available := Key_Map.Recently_Used.Copy; Key_Map.Recently_Used.Clear; end if; declare Key : C.Int := Key_Map.Available.First_Element; Marked_Keysym : Keysym_Array (0..1) := (Keysym, Qweyboard_Marker); begin if Key_Map.Keycodes.Contains (Key) then Key_Map.Keysyms.Delete (Key_Map.Keycodes.Element (Key)); Key_Map.Keycodes.Delete (Key); end if; Key_Map.Keycodes.Insert (Key, Keysym); Key_Map.Keysyms.Insert (Keysym, Key); I := XChangeKeyboardMapping (Display, Key, 2, Marked_Keysym, 1); I := XSync (Display, 0); Key_Map.Available.Delete (Key); Key_Map.Recently_Used.Insert (Key); return Key; end; end Get_Keycode; procedure Update_Mapping (Display : Display_Access; Key_Map : in out Key_Mapping) is No_Symbol : C.Unsigned_Long := 0; Min_Keycode : C.Int := 0; Max_Keycode : C.Int := 0; Unused : C.Int; begin XDisplayKeycodes (Display, Min_Keycode, Max_Keycode); declare Key_Count : C.Int := Max_Keycode - Min_Keycode + 1; Keysyms_Per_Key : C.Int := 0; Keysyms_Ptr : Keysym_Accesses.Pointer := XGetKeyboardMapping (Display, Min_Keycode, Key_Count, Keysyms_Per_key); Keysyms : Keysym_Array := Keysym_Accesses.Value (Keysyms_Ptr, C.Ptrdiff_T (Key_Count * Keysyms_Per_Key)); begin for Key in Min_Keycode .. Max_Keycode loop declare use type C.Unsigned; Low : C.Unsigned := C.Unsigned ((Key - Min_Keycode) * Keysyms_Per_Key); High : C.Unsigned := (Low + C.Unsigned (Keysyms_Per_Key) - 1); Key_Is_Empty : Boolean := Keysyms (Low+1) = Qweyboard_Marker or (for all KS of Keysyms (Low .. High) => KS = No_Symbol); begin if Key_Is_Empty then Key_Map.Available.Include (Key); end if; end; end loop; Unused := XFree (Keysyms_Ptr.all'Address); end; if Key_Map.Available.Is_Empty then raise GENERAL_X11_ERROR with "No empty key available as scratch space. This is technically not a problem but so unusual that I haven't bothered to code for this scenario..."; end if; end Update_Mapping; procedure Fake_Press (Display : Display_Access; Key : C.Int) is XTestRelease : constant C.Int := 0; XTestPress : constant C.Int := 1; I : C.Int; begin I := XTestFakeKeyEvent (Display, Key, XTestPress, 0); I := XSync (Display, 0); I := XTestFakeKeyEvent (Display, Key, XTestRelease, 0); I := XSync (Display, 0); end Fake_Press; end Output_Backend;
reznikmm/matreshka
Ada
3,639
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Elements; package ODF.DOM.Anim_Par_Elements is pragma Preelaborate; type ODF_Anim_Par is limited interface and XML.DOM.Elements.DOM_Element; type ODF_Anim_Par_Access is access all ODF_Anim_Par'Class with Storage_Size => 0; end ODF.DOM.Anim_Par_Elements;
reznikmm/matreshka
Ada
3,936
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Web API Definition -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014-2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with WebAPI.DOM.Documents; with WebAPI.HTML.Locations; package WebAPI.HTML.Documents is pragma Preelaborate; type Document is limited interface and WebAPI.DOM.Documents.Document; type Document_Access is access all Document'Class with Storage_Size => 0; not overriding function Get_Location (Self : not null access constant Document) return not null WebAPI.HTML.Locations.Location_Access is abstract with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "location"; end WebAPI.HTML.Documents;
zhmu/ananas
Ada
6,800
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ T E X T _ I O . D E C I M A L _ I O -- -- -- -- B o d y -- -- -- -- Copyright (C) 2020-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Wide_Text_IO.Decimal_Aux; with System.Img_Decimal_32; use System.Img_Decimal_32; with System.Img_Decimal_64; use System.Img_Decimal_64; with System.Img_Decimal_128; use System.Img_Decimal_128; with System.Val_Decimal_32; use System.Val_Decimal_32; with System.Val_Decimal_64; use System.Val_Decimal_64; with System.Val_Decimal_128; use System.Val_Decimal_128; with System.WCh_Con; use System.WCh_Con; with System.WCh_WtS; use System.WCh_WtS; package body Ada.Wide_Text_IO.Decimal_IO is subtype Int32 is Interfaces.Integer_32; subtype Int64 is Interfaces.Integer_64; subtype Int128 is Interfaces.Integer_128; package Aux32 is new Ada.Wide_Text_IO.Decimal_Aux (Int32, Scan_Decimal32, Set_Image_Decimal32); package Aux64 is new Ada.Wide_Text_IO.Decimal_Aux (Int64, Scan_Decimal64, Set_Image_Decimal64); package Aux128 is new Ada.Wide_Text_IO.Decimal_Aux (Int128, Scan_Decimal128, Set_Image_Decimal128); Need64 : constant Boolean := Num'Size > 32; Need128 : constant Boolean := Num'Size > 64; -- Throughout this generic body, we distinguish between the case where type -- Int32 is acceptable, where type Int64 is acceptable and where an Int128 -- is needed. These boolean constants are used to test for these cases and -- since it is a constant, only code for the relevant case will be included -- in the instance. Scale : constant Integer := Num'Scale; --------- -- Get -- --------- procedure Get (File : File_Type; Item : out Num; Width : Field := 0) is pragma Unsuppress (Range_Check); begin if Need128 then Item := Num'Fixed_Value (Aux128.Get (File, Width, Scale)); elsif Need64 then Item := Num'Fixed_Value (Aux64.Get (File, Width, Scale)); else Item := Num'Fixed_Value (Aux32.Get (File, Width, Scale)); end if; exception when Constraint_Error => raise Data_Error; end Get; procedure Get (Item : out Num; Width : Field := 0) is begin Get (Current_In, Item, Width); end Get; procedure Get (From : Wide_String; Item : out Num; Last : out Positive) is pragma Unsuppress (Range_Check); S : constant String := Wide_String_To_String (From, WCEM_Upper); -- String on which we do the actual conversion. Note that the method -- used for wide character encoding is irrelevant, since if there is -- a character outside the Standard.Character range then the call to -- Aux.Gets will raise Data_Error in any case. begin if Need128 then Item := Num'Fixed_Value (Aux128.Gets (S, Last, Scale)); elsif Need64 then Item := Num'Fixed_Value (Aux64.Gets (S, Last, Scale)); else Item := Num'Fixed_Value (Aux32.Gets (S, Last, Scale)); end if; exception when Constraint_Error => raise Data_Error; end Get; --------- -- Put -- --------- procedure Put (File : File_Type; Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin if Need128 then Aux128.Put (File, Int128'Integer_Value (Item), Fore, Aft, Exp, Scale); elsif Need64 then Aux64.Put (File, Int64'Integer_Value (Item), Fore, Aft, Exp, Scale); else Aux32.Put (File, Int32'Integer_Value (Item), Fore, Aft, Exp, Scale); end if; end Put; procedure Put (Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin Put (Current_Out, Item, Fore, Aft, Exp); end Put; procedure Put (To : out Wide_String; Item : Num; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is S : String (To'First .. To'Last); begin if Need128 then Aux128.Puts (S, Int128'Integer_Value (Item), Aft, Exp, Scale); elsif Need64 then Aux64.Puts (S, Int64'Integer_Value (Item), Aft, Exp, Scale); else Aux32.Puts (S, Int32'Integer_Value (Item), Aft, Exp, Scale); end if; for J in S'Range loop To (J) := Wide_Character'Val (Character'Pos (S (J))); end loop; end Put; end Ada.Wide_Text_IO.Decimal_IO;
optikos/oasis
Ada
1,806
ads
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Elements.Definitions; with Program.Element_Vectors; with Program.Lexical_Elements; with Program.Elements.Identifiers; package Program.Elements.Protected_Definitions is pragma Pure (Program.Elements.Protected_Definitions); type Protected_Definition is limited interface and Program.Elements.Definitions.Definition; type Protected_Definition_Access is access all Protected_Definition'Class with Storage_Size => 0; not overriding function Visible_Declarations (Self : Protected_Definition) return Program.Element_Vectors.Element_Vector_Access is abstract; not overriding function Private_Declarations (Self : Protected_Definition) return Program.Element_Vectors.Element_Vector_Access is abstract; not overriding function End_Name (Self : Protected_Definition) return Program.Elements.Identifiers.Identifier_Access is abstract; type Protected_Definition_Text is limited interface; type Protected_Definition_Text_Access is access all Protected_Definition_Text'Class with Storage_Size => 0; not overriding function To_Protected_Definition_Text (Self : aliased in out Protected_Definition) return Protected_Definition_Text_Access is abstract; not overriding function Private_Token (Self : Protected_Definition_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function End_Token (Self : Protected_Definition_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; end Program.Elements.Protected_Definitions;
riccardo-bernardini/eugen
Ada
760
ads
with Ada.Containers.Indefinite_Vectors; generic type Classified_Line (<>) is private; type Classifier_Type (<>) is private; with function Classify (Classifier : Classifier_Type; Line : String) return Classified_Line is <> ; with function Is_To_Be_Ignored (Line : Classified_Line) return Boolean is <>; package Line_Arrays.Classified is package Classified_Line_Vectors is new Ada.Containers.Indefinite_Vectors (Index_Type => Positive, Element_Type => Classified_Line); function Classify (Classifier : Classifier_Type; Lines : Line_Array) return Classified_Line_Vectors.Vector; end Line_Arrays.Classified;
reznikmm/matreshka
Ada
7,319
adb
-- Copyright (c) 1990 Regents of the University of California. -- All rights reserved. -- -- This software was developed by John Self of the Arcadia project -- at the University of California, Irvine. -- -- 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. -- TITLE miscellaneous definitions -- AUTHOR: John Self (UCI) -- DESCRIPTION contains all global variables used in aflex. -- also some subprograms which are commonly used. -- NOTES The real purpose of this file is to contain all miscellaneous -- items (functions, MACROS, variables definitions) which were at the -- top level of flex. -- $Header: /co/ua/self/arcadia/aflex/ada/src/RCS/misc_defsB.a,v 1.5 90/01/12 15:20:21 self Exp Locker: self $ package body MISC_DEFS is -- returns true if an nfa state has an epsilon out-transition slot -- that can be used. This definition is currently not used. function FREE_EPSILON(STATE : in INTEGER) return BOOLEAN is begin return ((TRANSCHAR(STATE) = SYM_EPSILON) and (TRANS2(STATE) = NO_TRANSITION) and (FINALST(STATE) /= STATE)); end FREE_EPSILON; -- returns true if an nfa state has an epsilon out-transition character -- and both slots are free function SUPER_FREE_EPSILON(STATE : in INTEGER) return BOOLEAN is begin return ((TRANSCHAR(STATE) = SYM_EPSILON) and (TRANS1(STATE) = NO_TRANSITION) ); end SUPER_FREE_EPSILON; function ALLOCATE_INTEGER_ARRAY(SIZE : in INTEGER) return INT_PTR is begin return new UNBOUNDED_INT_ARRAY(0 .. SIZE); end ALLOCATE_INTEGER_ARRAY; procedure REALLOCATE_INTEGER_ARRAY(ARR : in out INT_PTR; SIZE : in INTEGER) is NEW_ARR : INT_PTR; begin NEW_ARR := ALLOCATE_INTEGER_ARRAY(SIZE); NEW_ARR(0 .. ARR'LAST) := ARR(0 .. ARR'LAST); ARR := NEW_ARR; end REALLOCATE_INTEGER_ARRAY; procedure REALLOCATE_STATE_ENUM_ARRAY(ARR : in out STATE_ENUM_PTR; SIZE : in INTEGER) is NEW_ARR : STATE_ENUM_PTR; begin NEW_ARR := ALLOCATE_STATE_ENUM_ARRAY(SIZE); NEW_ARR(0 .. ARR'LAST) := ARR(0 .. ARR'LAST); ARR := NEW_ARR; end REALLOCATE_STATE_ENUM_ARRAY; procedure REALLOCATE_RULE_ENUM_ARRAY(ARR : in out RULE_ENUM_PTR; SIZE : in INTEGER) is NEW_ARR : RULE_ENUM_PTR; begin NEW_ARR := ALLOCATE_RULE_ENUM_ARRAY(SIZE); NEW_ARR(0 .. ARR'LAST) := ARR(0 .. ARR'LAST); ARR := NEW_ARR; end REALLOCATE_RULE_ENUM_ARRAY; function ALLOCATE_INT_PTR_ARRAY(SIZE : in INTEGER) return INT_STAR_PTR is begin return new UNBOUNDED_INT_STAR_ARRAY(0 .. SIZE); end ALLOCATE_INT_PTR_ARRAY; function ALLOCATE_RULE_ENUM_ARRAY(SIZE : in INTEGER) return RULE_ENUM_PTR is begin return new UNBOUNDED_RULE_ENUM_ARRAY(0 .. SIZE); end ALLOCATE_RULE_ENUM_ARRAY; function ALLOCATE_STATE_ENUM_ARRAY(SIZE : in INTEGER) return STATE_ENUM_PTR is begin return new UNBOUNDED_STATE_ENUM_ARRAY(0 .. SIZE); end ALLOCATE_STATE_ENUM_ARRAY; function ALLOCATE_BOOLEAN_ARRAY(SIZE : in INTEGER) return BOOLEAN_PTR is begin return new BOOLEAN_ARRAY(0 .. SIZE); end ALLOCATE_BOOLEAN_ARRAY; function ALLOCATE_VSTRING_ARRAY(SIZE : in INTEGER) return VSTRING_PTR is begin return new UNBOUNDED_VSTRING_ARRAY(0 .. SIZE); end ALLOCATE_VSTRING_ARRAY; function ALLOCATE_DFAACC_UNION(SIZE : in INTEGER) return DFAACC_PTR is begin return new UNBOUNDED_DFAACC_ARRAY(0 .. SIZE); end ALLOCATE_DFAACC_UNION; -------------------------------------------- -- Allocate_Wide_Wide_Character_Set_Array -- -------------------------------------------- function Allocate_Wide_Wide_Character_Set_Array (Size : Natural) return Wide_Wide_Character_Set_Array_Access is begin return new Wide_Wide_Character_Set_Array (1 .. Size); end Allocate_Wide_Wide_Character_Set_Array; procedure REALLOCATE_INT_PTR_ARRAY(ARR : in out INT_STAR_PTR; SIZE : in INTEGER) is NEW_ARR : INT_STAR_PTR; begin NEW_ARR := ALLOCATE_INT_PTR_ARRAY(SIZE); NEW_ARR(0 .. ARR'LAST) := ARR(0 .. ARR'LAST); ARR := NEW_ARR; end REALLOCATE_INT_PTR_ARRAY; ---------------------------------------------- -- Reallocate_Wide_Wide_Character_Set_Array -- ---------------------------------------------- procedure Reallocate_Wide_Wide_Character_Set_Array (Item : in out Wide_Wide_Character_Set_Array_Access; Size : Natural) is procedure Free is new Ada.Unchecked_Deallocation (Wide_Wide_Character_Set_Array, Wide_Wide_Character_Set_Array_Access); Aux : Wide_Wide_Character_Set_Array_Access; begin Aux := Allocate_Wide_Wide_Character_Set_Array (Size); Aux (Item'Range) := Item.all; Free (Item); Item := Aux; end Reallocate_Wide_Wide_Character_Set_Array; -------------------------------------- -- Allocate_Unicode_Character_Array -- -------------------------------------- function Allocate_Unicode_Character_Array (Size : Integer) return Unicode_Character_Array_Access is begin return new Unicode_Character_Array (0 .. Size); end Allocate_Unicode_Character_Array; ---------------------------------------- -- Reallocate_Unicode_Character_Array -- ---------------------------------------- procedure Reallocate_Unicode_Character_Array (Item : in out Unicode_Character_Array_Access; Size : Integer) is New_Item : Unicode_Character_Array_Access; begin New_Item := Allocate_Unicode_Character_Array (Size); New_Item (0 .. Item'Last) := Item (0 .. Item'Last); Item := New_Item; end Reallocate_Unicode_Character_Array; procedure REALLOCATE_VSTRING_ARRAY(ARR : in out VSTRING_PTR; SIZE : in INTEGER) is NEW_ARR : VSTRING_PTR; begin NEW_ARR := ALLOCATE_VSTRING_ARRAY(SIZE); NEW_ARR(0 .. ARR'LAST) := ARR(0 .. ARR'LAST); ARR := NEW_ARR; end REALLOCATE_VSTRING_ARRAY; procedure REALLOCATE_DFAACC_UNION(ARR : in out DFAACC_PTR; SIZE : in INTEGER) is NEW_ARR : DFAACC_PTR; begin NEW_ARR := ALLOCATE_DFAACC_UNION(SIZE); NEW_ARR(0 .. ARR'LAST) := ARR(0 .. ARR'LAST); ARR := NEW_ARR; end REALLOCATE_DFAACC_UNION; procedure REALLOCATE_BOOLEAN_ARRAY(ARR : in out BOOLEAN_PTR; SIZE : in INTEGER) is NEW_ARR : BOOLEAN_PTR; begin NEW_ARR := ALLOCATE_BOOLEAN_ARRAY(SIZE); NEW_ARR(0 .. ARR'LAST) := ARR(0 .. ARR'LAST); ARR := NEW_ARR; end REALLOCATE_BOOLEAN_ARRAY; end MISC_DEFS;
cpjreynolds/ncurses
Ada
6,877
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ncurses -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 2000-2011,2014 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Eugene V. Melaragno <[email protected]> 2000 -- Version Control -- $Revision: 1.6 $ -- $Date: 2014/09/13 19:10:18 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with ncurses2.util; use ncurses2.util; with Terminal_Interface.Curses; use Terminal_Interface.Curses; -- test effects of overlapping windows procedure ncurses2.overlap_test is procedure fillwin (win : Window; ch : Character); procedure crosswin (win : Window; ch : Character); procedure fillwin (win : Window; ch : Character) is y1 : Line_Position; x1 : Column_Position; begin Get_Size (win, y1, x1); for y in 0 .. y1 - 1 loop Move_Cursor (win, y, 0); for x in 0 .. x1 - 1 loop Add (win, Ch => ch); end loop; end loop; exception when Curses_Exception => null; -- write to lower right corner end fillwin; procedure crosswin (win : Window; ch : Character) is y1 : Line_Position; x1 : Column_Position; begin Get_Size (win, y1, x1); for y in 0 .. y1 - 1 loop for x in 0 .. x1 - 1 loop if ((x > (x1 - 1) / 3) and (x <= (2 * (x1 - 1)) / 3)) or (((y > (y1 - 1) / 3) and (y <= (2 * (y1 - 1)) / 3))) then Move_Cursor (win, y, x); Add (win, Ch => ch); end if; end loop; end loop; end crosswin; -- In a 24x80 screen like some xterms are, the instructions will -- be overwritten. ch : Character; win1 : Window := New_Window (9, 20, 3, 3); win2 : Window := New_Window (9, 20, 9, 16); begin Set_Raw_Mode (SwitchOn => True); Refresh; Move_Cursor (Line => 0, Column => 0); Add (Str => "This test shows the behavior of wnoutrefresh() with " & "respect to"); Add (Ch => newl); Add (Str => "the shared region of two overlapping windows A and B. "& "The cross"); Add (Ch => newl); Add (Str => "pattern in each window does not overlap the other."); Add (Ch => newl); Move_Cursor (Line => 18, Column => 0); Add (Str => "a = refresh A, then B, then doupdate. b = refresh B, " & "then A, then doupdate"); Add (Ch => newl); Add (Str => "c = fill window A with letter A. d = fill window B " & "with letter B."); Add (Ch => newl); Add (Str => "e = cross pattern in window A. f = cross pattern " & "in window B."); Add (Ch => newl); Add (Str => "g = clear window A. h = clear window B."); Add (Ch => newl); Add (Str => "i = overwrite A onto B. j = overwrite " & "B onto A."); Add (Ch => newl); Add (Str => "^Q/ESC = terminate test."); loop ch := Code_To_Char (Getchar); exit when ch = CTRL ('Q') or ch = CTRL ('['); -- QUIT or ESCAPE case ch is when 'a' => -- refresh window A first, then B Refresh_Without_Update (win1); Refresh_Without_Update (win2); Update_Screen; when 'b' => -- refresh window B first, then A Refresh_Without_Update (win2); Refresh_Without_Update (win1); Update_Screen; when 'c' => -- fill window A so it's visible fillwin (win1, 'A'); when 'd' => -- fill window B so it's visible fillwin (win2, 'B'); when 'e' => -- cross test pattern in window A crosswin (win1, 'A'); when 'f' => -- cross test pattern in window B crosswin (win2, 'B'); when 'g' => -- clear window A Clear (win1); Move_Cursor (win1, 0, 0); when 'h' => -- clear window B Clear (win2); Move_Cursor (win2, 0, 0); when 'i' => -- overwrite A onto B Overwrite (win1, win2); when 'j' => -- overwrite B onto A Overwrite (win2, win1); when others => null; end case; end loop; Delete (win2); Delete (win1); Erase; End_Windows; end ncurses2.overlap_test;
AdaCore/gpr
Ada
2,282
adb
-- -- Copyright (C) 2019-2023, AdaCore -- -- SPDX-License-Identifier: Apache-2.0 -- with Ada.Directories; with Ada.Text_IO; with Ada.Strings.Fixed; with GPR2.Project.Attribute; with GPR2.Project.View; with GPR2.Project.Tree; with GPR2.Project.Registry.Attribute; with GPR2.Context; procedure Main is use Ada; use GPR2; use GPR2.Project; procedure Display (Prj : Project.View.Object; Full : Boolean := True); ------------- -- Display -- ------------- procedure Display (Prj : Project.View.Object; Full : Boolean := True) is package A renames GPR2.Project.Registry.Attribute; Att : Project.Attribute.Object; begin Text_IO.Put (String (Prj.Name) & " "); Text_IO.Set_Col (10); Text_IO.Put_Line (Prj.Qualifier'Img); Att := Prj.Attribute (A.Languages); Text_IO.Put_Line (Att.Image); Text_IO.Put_Line ("ada " & Att.Has_Value ("ada")'Img); Text_IO.Put_Line ("Ada " & Att.Has_Value ("Ada")'Img); Text_IO.Put_Line ("FORTRAN " & Att.Has_Value ("FORTRAN")'Img); Text_IO.Put_Line ("fortran " & Att.Has_Value ("fortran")'Img); Att := Prj.Attributes.Element (A.Source_Dirs.Attr); Text_IO.Put_Line (Att.Image); Text_IO.Put_Line (". " & Att.Has_Value (".")'Img); Text_IO.Put_Line ("src1 " & Att.Has_Value ("src1")'Img); Text_IO.Put_Line ("sRc1 " & Att.Has_Value ("sRc1")'Img); Text_IO.Put_Line ("SRC2 " & Att.Has_Value ("SRC2")'Img); Text_IO.Put_Line ("Src2 " & Att.Has_Value ("Src2")'Img); end Display; Prj : Project.Tree.Object; Ctx : Context.Object; begin Project.Tree.Load (Prj, Create ("demo.gpr"), Ctx); Display (Prj.Root_Project); exception when GPR2.Project_Error => if Prj.Has_Messages then Text_IO.Put_Line ("Messages found:"); for M of Prj.Log_Messages.all loop declare Mes : constant String := M.Format; L : constant Natural := Strings.Fixed.Index (Mes, "/check-has-value"); begin if L /= 0 then Text_IO.Put_Line (Mes (L .. Mes'Last)); else Text_IO.Put_Line (Mes); end if; end; end loop; end if; end Main;
optikos/oasis
Ada
6,401
ads
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Lexical_Elements; with Program.Elements.Expressions; with Program.Elements.Formal_Interface_Types; with Program.Element_Visitors; package Program.Nodes.Formal_Interface_Types is pragma Preelaborate; type Formal_Interface_Type is new Program.Nodes.Node and Program.Elements.Formal_Interface_Types.Formal_Interface_Type and Program.Elements.Formal_Interface_Types.Formal_Interface_Type_Text with private; function Create (Limited_Token : Program.Lexical_Elements.Lexical_Element_Access; Task_Token : Program.Lexical_Elements.Lexical_Element_Access; Protected_Token : Program.Lexical_Elements.Lexical_Element_Access; Synchronized_Token : Program.Lexical_Elements.Lexical_Element_Access; Interface_Token : Program.Lexical_Elements.Lexical_Element_Access; And_Token : Program.Lexical_Elements.Lexical_Element_Access; Progenitors : Program.Elements.Expressions .Expression_Vector_Access) return Formal_Interface_Type; type Implicit_Formal_Interface_Type is new Program.Nodes.Node and Program.Elements.Formal_Interface_Types.Formal_Interface_Type with private; function Create (Progenitors : Program.Elements.Expressions .Expression_Vector_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False; Has_Limited : Boolean := False; Has_Task : Boolean := False; Has_Protected : Boolean := False; Has_Synchronized : Boolean := False) return Implicit_Formal_Interface_Type with Pre => Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance; private type Base_Formal_Interface_Type is abstract new Program.Nodes.Node and Program.Elements.Formal_Interface_Types.Formal_Interface_Type with record Progenitors : Program.Elements.Expressions.Expression_Vector_Access; end record; procedure Initialize (Self : aliased in out Base_Formal_Interface_Type'Class); overriding procedure Visit (Self : not null access Base_Formal_Interface_Type; Visitor : in out Program.Element_Visitors.Element_Visitor'Class); overriding function Progenitors (Self : Base_Formal_Interface_Type) return Program.Elements.Expressions.Expression_Vector_Access; overriding function Is_Formal_Interface_Type_Element (Self : Base_Formal_Interface_Type) return Boolean; overriding function Is_Formal_Type_Definition_Element (Self : Base_Formal_Interface_Type) return Boolean; overriding function Is_Definition_Element (Self : Base_Formal_Interface_Type) return Boolean; type Formal_Interface_Type is new Base_Formal_Interface_Type and Program.Elements.Formal_Interface_Types.Formal_Interface_Type_Text with record Limited_Token : Program.Lexical_Elements.Lexical_Element_Access; Task_Token : Program.Lexical_Elements.Lexical_Element_Access; Protected_Token : Program.Lexical_Elements.Lexical_Element_Access; Synchronized_Token : Program.Lexical_Elements.Lexical_Element_Access; Interface_Token : Program.Lexical_Elements.Lexical_Element_Access; And_Token : Program.Lexical_Elements.Lexical_Element_Access; end record; overriding function To_Formal_Interface_Type_Text (Self : aliased in out Formal_Interface_Type) return Program.Elements.Formal_Interface_Types .Formal_Interface_Type_Text_Access; overriding function Limited_Token (Self : Formal_Interface_Type) return Program.Lexical_Elements.Lexical_Element_Access; overriding function Task_Token (Self : Formal_Interface_Type) return Program.Lexical_Elements.Lexical_Element_Access; overriding function Protected_Token (Self : Formal_Interface_Type) return Program.Lexical_Elements.Lexical_Element_Access; overriding function Synchronized_Token (Self : Formal_Interface_Type) return Program.Lexical_Elements.Lexical_Element_Access; overriding function Interface_Token (Self : Formal_Interface_Type) return Program.Lexical_Elements.Lexical_Element_Access; overriding function And_Token (Self : Formal_Interface_Type) return Program.Lexical_Elements.Lexical_Element_Access; overriding function Has_Limited (Self : Formal_Interface_Type) return Boolean; overriding function Has_Task (Self : Formal_Interface_Type) return Boolean; overriding function Has_Protected (Self : Formal_Interface_Type) return Boolean; overriding function Has_Synchronized (Self : Formal_Interface_Type) return Boolean; type Implicit_Formal_Interface_Type is new Base_Formal_Interface_Type with record Is_Part_Of_Implicit : Boolean; Is_Part_Of_Inherited : Boolean; Is_Part_Of_Instance : Boolean; Has_Limited : Boolean; Has_Task : Boolean; Has_Protected : Boolean; Has_Synchronized : Boolean; end record; overriding function To_Formal_Interface_Type_Text (Self : aliased in out Implicit_Formal_Interface_Type) return Program.Elements.Formal_Interface_Types .Formal_Interface_Type_Text_Access; overriding function Is_Part_Of_Implicit (Self : Implicit_Formal_Interface_Type) return Boolean; overriding function Is_Part_Of_Inherited (Self : Implicit_Formal_Interface_Type) return Boolean; overriding function Is_Part_Of_Instance (Self : Implicit_Formal_Interface_Type) return Boolean; overriding function Has_Limited (Self : Implicit_Formal_Interface_Type) return Boolean; overriding function Has_Task (Self : Implicit_Formal_Interface_Type) return Boolean; overriding function Has_Protected (Self : Implicit_Formal_Interface_Type) return Boolean; overriding function Has_Synchronized (Self : Implicit_Formal_Interface_Type) return Boolean; end Program.Nodes.Formal_Interface_Types;
sparre/JSA
Ada
1,989
ads
------------------------------------------------------------------------------ -- -- package Tabulated_Text_IO (spec) -- ------------------------------------------------------------------------------ -- Update log: -- -- 2000.02.01 (Jacob Sparre Andersen) -- Written. -- ------------------------------------------------------------------------------ -- Standard packages: with Ada.Characters.Latin_1; with Ada.Strings.Unbounded; with Ada.Text_IO; ------------------------------------------------------------------------------ package JSA.Tabulated_Text_IO is --------------------------------------------------------------------------- -- Tabulator: Tabulator : Character := Ada.Characters.Latin_1.HT; --------------------------------------------------------------------------- -- procedure New_Record: procedure New_Record (File : in Ada.Text_IO.File_Type); --------------------------------------------------------------------------- -- procedure Skip_Record: procedure Skip_Record (File : in Ada.Text_IO.File_Type); --------------------------------------------------------------------------- -- procedure New_Field: procedure New_Field (File : in Ada.Text_IO.File_Type); --------------------------------------------------------------------------- -- procedure Skip_Field: procedure Skip_Field (File : in Ada.Text_IO.File_Type); --------------------------------------------------------------------------- -- procedure Put: procedure Put (File : in Ada.Text_IO.File_Type; Field : in Ada.Strings.Unbounded.Unbounded_String); --------------------------------------------------------------------------- -- procedure Get: procedure Get (File : in Ada.Text_IO.File_Type; Field : out Ada.Strings.Unbounded.Unbounded_String); --------------------------------------------------------------------------- end JSA.Tabulated_Text_IO;
onox/orka
Ada
1,136
ads
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2021 onox <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. package Orka.SIMD.AVX2.Longs.Arithmetic is pragma Pure; function "+" (Left, Right : m256l) return m256l with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_paddq256"; function "-" (Left, Right : m256l) return m256l with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_psubq256"; function "-" (Elements : m256l) return m256l is ((others => 0) - Elements) with Inline; end Orka.SIMD.AVX2.Longs.Arithmetic;
damaki/libkeccak
Ada
2,071
ads
------------------------------------------------------------------------------- -- Copyright (c) 2019, Daniel King -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- * Redistributions of source code must retain the above copyright -- notice, this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * The name of the copyright holder may not be used to endorse or promote -- Products derived from this software without specific prior written -- permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY -- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- with CSHAKE; with Keccak.Generic_Tuple_Hash; -- @summary -- Instantations of TupleHash128 and TupleHash256. -- -- @group TupleHash package Tuple_Hash with SPARK_Mode => On is package Tuple_Hash_128 is new Keccak.Generic_Tuple_Hash (CSHAKE.CSHAKE128); package Tuple_Hash_256 is new Keccak.Generic_Tuple_Hash (CSHAKE.CSHAKE256); end Tuple_Hash;
charlie5/aShell
Ada
1,086
adb
with Shell.Commands.Unsafe, Ada.Text_IO; procedure Test_Unsafe_Command_Input is procedure Log (Message : in String) renames Ada.Text_IO.Put_Line; procedure NL (Count : in Ada.Text_IO.Positive_Count := 1) renames Ada.Text_IO.New_Line; begin Log ("Begin Test_Command_Input test."); NL (2); declare use Shell, Shell.Commands, Shell.Commands.Unsafe, Shell.Commands.Unsafe.Forge; The_Command : Unsafe.Command := To_Command ("cat -"); begin The_Command.Start (Accepts_Input => True); The_Command.Send (+"Hello world."); Log ("Output: '" & (+Output_of (Results_Of (The_Command))) & "'"); for i in 1 .. 5 loop The_Command.Send (+i'Image); Log ("Output: '" & (+Output_of (Results_Of (The_Command))) & "'"); end loop; The_Command.Send (+"Goodbye world."); Log ("Output: '" & (+Output_of (Results_Of (The_Command))) & "'"); end; NL (2); Log ("End Test_Command_Input test."); end Test_Unsafe_Command_Input;
BrickBot/Bound-T-H8-300
Ada
21,533
adb
-- Storage (body) -- -- A component of the Bound-T Worst-Case Execution Time Tool. -- ------------------------------------------------------------------------------- -- Copyright (c) 1999 .. 2015 Tidorum Ltd -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- 1. Redistributions of source code must retain the above copyright notice, this -- list of conditions and the following disclaimer. -- 2. Redistributions in binary form must reproduce the above copyright notice, -- this list of conditions and the following disclaimer in the documentation -- and/or other materials provided with the distribution. -- -- This software is provided by the copyright holders and contributors "as is" and -- any express or implied warranties, including, but not limited to, the implied -- warranties of merchantability and fitness for a particular purpose are -- disclaimed. In no event shall the copyright owner or contributors be liable for -- any direct, indirect, incidental, special, exemplary, or consequential damages -- (including, but not limited to, procurement of substitute goods or services; -- loss of use, data, or profits; or business interruption) however caused and -- on any theory of liability, whether in contract, strict liability, or tort -- (including negligence or otherwise) arising in any way out of the use of this -- software, even if advised of the possibility of such damage. -- -- Other modules (files) of this software composition should contain their -- own copyright statements, which may have different copyright and usage -- conditions. The above conditions apply to this file. ------------------------------------------------------------------------------- -- -- $Revision: 1.23 $ -- $Date: 2015/10/24 20:05:52 $ -- -- $Log: storage.adb,v $ -- Revision 1.23 2015/10/24 20:05:52 niklas -- Moved to free licence. -- -- Revision 1.22 2014/06/28 10:01:53 niklas -- Added function Rainge() return Code_Address_Range_T. -- -- Revision 1.21 2014/06/11 12:48:55 niklas -- Moved Code_Address_Range_T and its operations to package Processor, -- making this type target-specific. Reason: in Bound-T/OCL, Code_Address_T -- is not scalar, therefore it has no 'First, 'Last, and other -- necessary operations. Retained renamings of the most important -- items here, to minimize changes to the interface. -- -- Revision 1.20 2013-02-12 08:47:20 niklas -- BT-CH-0245: Global volatile cells and "volatile" assertions. -- -- Revision 1.19 2011-09-09 14:51:51 niklas -- Added function Initial_Cell_Variables, for use in ALF export. -- -- Revision 1.18 2011-09-06 17:40:33 niklas -- Added Cell_At (Index), for use in ALF export. -- -- Revision 1.17 2009-11-27 11:28:08 niklas -- BT-CH-0184: Bit-widths, Word_T, failed modular analysis. -- -- Revision 1.16 2009-10-07 19:26:10 niklas -- BT-CH-0183: Cell-sets are a tagged-type class. -- -- Revision 1.15 2008-06-18 20:52:57 niklas -- BT-CH-0130: Data pointers relative to initial-value cells. -- -- Revision 1.14 2007/12/17 13:54:41 niklas -- BT-CH-0098: Assertions on stack usage and final stack height, etc. -- -- Revision 1.13 2007/08/20 12:14:07 niklas -- Support for Storage.Data: Added Image functions for Cell_Value_T and -- Cell_Value_List_T, and added function Cells_Of (Cell_Value_List_T). -- -- Revision 1.12 2007/03/29 15:18:04 niklas -- BT-CH-0056. -- -- Revision 1.11 2007/03/23 21:05:36 niklas -- Added Small_Cell_Set_T operations Is_Empty, Remove (Cell_T), -- Remove (Small_Cell_Set_T), Move_Cells, Image, and Discard. -- -- Revision 1.10 2007/01/25 21:25:20 niklas -- BT-CH-0043. -- -- Revision 1.9 2007/01/21 19:31:48 niklas -- BT-CH-0042. -- -- Revision 1.8 2007/01/13 13:51:07 niklas -- BT-CH-0041. -- -- Revision 1.7 2006/08/22 12:08:20 niklas -- Added the function Is_None, to check if a Cell_Set_T is -- uninitialized or otherwise equal to No_Cell_Set (null). -- Modified Image (Cell_Set_T) to accept No_Cell_Set and -- display it as "[not defined]". -- -- Revision 1.6 2005/09/17 06:15:53 niklas -- Added function Cell_List (From, Except) to list the cells in a -- difference set without constructing the difference set itself. -- -- Revision 1.5 2005/09/16 12:57:41 niklas -- Worked around the GNAT 3.15p problem in predefined "=" for -- packed bit-vectors, by giving an overriding "=" operation -- for Cell_Bitset_T. -- -- Revision 1.4 2005/09/14 11:48:25 niklas -- As an addition to BT-CH-0008, modified (now, corrected) the Image -- function for Cell_Set_T not to compare the Item to No_Cell_Set -- (because this uses the overridden "=" operator which no longer -- works for null references like No_Cell_Set). Instead, Image -- assumes that the Item is not null, as currently required of users -- of Cell_Set_T. -- -- Revision 1.3 2005/09/12 19:03:00 niklas -- BT-CH-0008. -- -- Revision 1.2 2005/02/16 21:11:49 niklas -- BT-CH-0002. -- -- Revision 1.1 2004/04/25 09:33:06 niklas -- First Tidorum version. -- with Ada.Tags; with Output; with Storage.Cell_Store; with Storage.Opt; with Storage.Volatiles; package body Storage is -- --- Cells -- -- --- Aliasing groups -- -- --- Creating cells. Attributes of cells. -- function Cell ( Spec : Processor.Cell_Spec_T; Initial_Value_For : Cell_T) return Cell_T is begin return Cell_Store.Cell_By_Spec (Spec, Initial_Value_For); end Cell; function Cell (Spec : Processor.Cell_Spec_T) return Cell_T is begin return Cell_Store.Cell_By_Spec (Spec, No_Cell); end Cell; function Number_Of_Cells return Natural is begin return Cell_Store.Number_Of_Cells; end Number_Of_Cells; function Spec_Of (Cell : Cell_T) return Processor.Cell_Spec_T is begin return Cell.Spec.all; end Spec_Of; function Width_Of (Cell : Cell_T) return Width_T is begin return Cell.Width; end Width_Of; function Counter_Cell (Cell : Cell_T) return Boolean is begin return Cell.Counter; end Counter_Cell; function Alias_Group (Cell : Cell_T) return Processor.Alias_Group_T is begin return Cell.Alias_Group; end Alias_Group; function Alias_Range (Cell : Cell_T) return Processor.Alias_Range_T is begin return Cell.Alias_Range; end Alias_Range; function May_Alias (This, That : Cell_T) return Boolean is use type Processor.Alias_Group_T; begin if This.Alias_Group = That.Alias_Group then return This = That; else return May_Alias (This.Alias_Range, That.Alias_Range); end if; end May_Alias; function Is_Initial (Cell : Cell_T) return Boolean is begin return Cell.Is_Initial; end Is_Initial; function Initial_Cell (Cell : Cell_T) return Cell_T is begin return Cell.Initial_Cell; end Initial_Cell; procedure Mark_As_Volatile (Cell : Cell_T) is begin if Cell.Volatile then -- Double marking! Output.Warning ( "Marking the cell " & Name_Of (Cell) & " as volatile - again."); elsif Cell.Is_Initial then Output.Fault ( Location => "Storage.Mark_As_Volatile", Text => "Attempt to mark the initial-value cell " & Name_Of (Cell) & " as volatile."); else Cell.Volatile := True; if Opt.Trace_Volatile then Output.Trace ( "Volatile cell" & Output.Field_Separator & Name_Of (Cell)); end if; if Cell.Counter then Output.Note ( "Volatile cell " & Name_Of (Cell) & " cannot be a counter."); Cell.Counter := False; end if; end if; end Mark_As_Volatile; procedure Mark_Range_As_Volatile ( From, To : in Processor.Cell_Spec_T; Valid_Range : out Boolean) renames Volatiles.Mark_Range; function Is_Volatile (Cell : Cell_T) return Boolean is begin return Cell.Volatile; end Is_Volatile; function Number_Of_Volatile_Cells return Natural is begin return Cell_Store.Number_Of_Volatile_Cells; end Number_Of_Volatile_Cells; function Volatile_Index (Cell : Cell_T) return Volatile_Cell_Index_T is begin if not Cell.Volatile then raise Not_A_Volatile_Cell; end if; return Cell.Vol_Index; end Volatile_Index; function Cell (Name : String) return Cell_T is begin return Cell_Store.Cell_By_Name (Name); end Cell; function Name_Of (Cell : Cell_T) return String is begin return Cell.Name.all; end Name_Of; function Index (Cell : Cell_T) return Cell_Index_T is begin return Cell.Index; end Index; function Cell_At (Index : Cell_Index_T) return Cell_T renames Storage.Cell_Store.Cell_At; function Image (Item : Cell_T) return String renames Name_Of; -- --- Cell lists -- function Null_Cell_List return Cell_List_T is begin return (1 .. 0 => No_Cell); end Null_Cell_List; function Is_Member ( Cell : Cell_T; Of_List : Cell_List_T) return Boolean is begin for I in Of_List'Range loop if Of_List(I) = Cell then return True; end if; end loop; return False; end Is_Member; function Counter_Cells (List : Cell_List_T) return Cell_List_T is Counters : Cell_List_T (1 .. List'Length); Last : Natural := 0; -- The result will be Counters(1 .. Last). begin for C in List'Range loop if List(C).Counter then Last := Last + 1; Counters(Last) := List(C); end if; end loop; return Counters(1 .. Last); end Counter_Cells; function Image (Item : Cell_List_T) return String is begin if Item'Length = 0 then return ""; elsif Item'Length = 1 then return Image (Item(Item'First)); else return Image (Item(Item'First)) & ", " & Image (Item(Item'First + 1 .. Item'Last)); end if; end Image; function Initial_Cell_Variables return Cell_List_T renames Cell_Store.Initial_Cell_Variables; -- --- Cell sets -- procedure Erase (Set : in out Root_Cell_Set_T) is begin Remove ( Cells => To_List (Cell_Set_T (Set)), From => Cell_Set_T (Set)); end Erase; function Any_Member ( Cells : Cell_List_T; Of_Set : Root_Cell_Set_T) return Boolean is begin for C in Cells'Range loop if Is_Member (Cells(C), Cell_Set_T (Of_Set)) then return True; end if; end loop; return False; end Any_Member; function To_List ( From : Root_Cell_Set_T; Except : Cell_Set_T) return Cell_List_T is Tutti : constant Cell_List_T := To_List (Cell_Set_T (From)); -- All the cells in From. Boni : Cell_List_T (1 .. Tutti'Length); Last : Natural := 0; -- The result will be Boni(1 .. Last). begin for T in Tutti'Range loop if not Is_Member (Cell => Tutti(T), Of_Set => Except) then -- This cell is not excepted. Last := Last + 1; Boni(Last) := Tutti(T); end if; end loop; return Boni(1 .. Last); end To_List; procedure Add ( Cell : in Cell_T; To : in out Root_Cell_Set_T; Added : in out Boolean) is begin if not Is_Member (Cell, Cell_Set_T (To)) then Added := True; Add (Cell => Cell, To => Cell_Set_T (To)); end if; end Add; procedure Add ( Cells : in Cell_List_T; To : in out Root_Cell_Set_T) is begin for C in Cells'Range loop Add (Cell => Cells(C), To => Cell_Set_T (To)); end loop; end Add; procedure Add ( Cells : in Root_Cell_Set_T; To : in out Root_Cell_Set_T) is begin Basic_Mixed.Add ( Cells => Cell_Set_T (Cells), To => Cell_Set_T (To )); end Add; procedure Remove ( Cells : in Cell_List_T; From : in out Root_Cell_Set_T) is begin for C in Cells'Range loop Remove ( Cell => Cells(C), From => Cell_Set_T (From)); end loop; end Remove; procedure Remove ( Cells : in Root_Cell_Set_T; From : in out Root_Cell_Set_T) is begin Basic_Mixed.Remove ( Cells => Cell_Set_T (Cells), From => Cell_Set_T (From )); end Remove; procedure Move_Cells ( From : in out Root_Cell_Set_T; To : in out Root_Cell_Set_T) is begin Basic_Mixed.Move_Cells ( From => Cell_Set_T (From), To => Cell_Set_T (To )); end Move_Cells; function Image (Item : Root_Cell_Set_T) return String is begin return Image (To_List (Cell_Set_T (Item))); end Image; function "=" (Left, Right : Root_Cell_Set_T) return Boolean is Equal : Boolean; begin Equal := Basic_Mixed."=" ( Cell_Set_T (Left), Cell_Set_T (Right)); return Equal; end "="; function Union (Left, Right : Root_Cell_Set_T) return Cell_Set_T is begin return Basic_Mixed.Union ( Cell_Set_T (Left), Cell_Set_T (Right)); end Union; function "-" (Left, Right : Root_Cell_Set_T) return Cell_Set_T is begin return Basic_Mixed."-" ( Cell_Set_T (Left), Cell_Set_T (Right)); end "-"; function Intersection (Left, Right : Root_Cell_Set_T) return Cell_Set_T is begin return Basic_Mixed.Intersection ( Cell_Set_T (Left), Cell_Set_T (Right)); end Intersection; procedure Discard (Set : in out Root_Cell_Set_T) is begin Erase (Cell_Set_T (Set)); end Discard; function "<=" (Left : Cell_List_T; Right : Cell_Set_T) return Boolean -- -- Whether Left is a subset of Right, that is, all cells in -- the Left list are members of the Right set. -- is begin for L in Left'Range loop if not Is_Member (Left(L), Right) then return False; end if; end loop; return True; end "<="; -- --- Class-wide operations on sets of cells -- package body Basic_Mixed is procedure Add ( Cells : in Cell_Set_T; To : in out Cell_Set_T) is begin Add (Cells => To_List (Cells), To => To); -- Dispatch on To. end Add; procedure Remove ( Cells : in Cell_Set_T; From : in out Cell_Set_T) is begin Remove (Cells => To_List (Cells), From => From); -- Dispatch on To. end Remove; procedure Move_Cells ( From : in out Cell_Set_T; To : in out Cell_Set_T) is Cells : constant Cell_List_T := To_List (From); -- The cells to be moved. Dispatch on From. begin Erase (From); -- Dispatch on From. Add (Cells => Cells, To => To); -- Dispatch on To. end Move_Cells; function "=" (Left, Right : Cell_Set_T) return Boolean is Equal : Boolean; -- The result. begin if Card (Left) /= Card (Right) then Equal := False; else Equal := To_List (Left) <= Right; end if; return Equal; end "="; function Union (Left, Right : Cell_Set_T) return Cell_Set_T is Uni : Cell_Set_T := Left; -- The union to be. begin Add (Cells => To_List (Right), To => Uni); -- Dispatch on Uni. return Uni; end Union; function "-" (Left, Right : Cell_Set_T) return Cell_Set_T is Diff : Cell_Set_T := Left; -- The difference to be. begin Remove (Cells => To_List (Right), From => Diff); -- Dispatch on Diff. return Diff; end "-"; function Intersection (Left, Right : Cell_Set_T) return Cell_Set_T is Inter : Cell_Set_T := Left; -- The intersection to be. Lefts : constant Cell_List_T := To_List (Inter); -- All the elements in the Left set (= Inter set, here). begin for L in Lefts'Range loop if not Is_Member (Cell => Lefts(L), Of_Set => Right) then Remove (Cell => Lefts(L), From => Inter); end if; end loop; return Inter; end Intersection; end Basic_Mixed; -- --- Class-wide operations on sets of cells that use primitive --- operations when both operand sets are of the same class. -- package body Mixed is use type Ada.Tags.Tag; procedure Add ( Cells : in Cell_Set_T; To : in out Cell_Set_T) is begin if Cells'Tag = To'Tag then Storage.Add (Cells, To); else Basic_Mixed.Add (Cells, To); end if; end Add; procedure Remove ( Cells : in Cell_Set_T; From : in out Cell_Set_T) is begin if Cells'Tag = From'Tag then Storage.Remove (Cells, From); else Basic_Mixed.Remove (Cells, From); end if; end Remove; procedure Move_Cells ( From : in out Cell_Set_T; To : in out Cell_Set_T) is begin if From'Tag = To'Tag then Storage.Move_Cells (From, To); else Basic_Mixed.Move_Cells (From, To); end if; end Move_Cells; function "=" (Left, Right : Cell_Set_T) return Boolean is begin if Left'Tag = Right'Tag then return Storage."=" (Left, Right); else return Basic_Mixed."=" (Left, Right); end if; end "="; function Union (Left, Right : Cell_Set_T) return Cell_Set_T is begin if Left'Tag = Right'Tag then return Storage.Union (Left, Right); else return Basic_Mixed.Union (Left, Right); end if; end Union; function "-" (Left, Right : Cell_Set_T) return Cell_Set_T is begin if Left'Tag = Right'Tag then return Storage."-" (Left, Right); else return Basic_Mixed."-" (Left, Right); end if; end "-"; function Intersection (Left, Right : Cell_Set_T) return Cell_Set_T is begin if Left'Tag = Right'Tag then return Storage.Intersection (Left, Right); else return Basic_Mixed.Intersection (Left, Right); end if; end Intersection; end Mixed; -- --- Locations and location maps -- function Rainge (First, Last : Processor.Code_Address_T) return Code_Address_Range_T is Result : Code_Address_Range_T; begin Result := Processor.Singleton (First); Processor.Widen ( Rainge => Result, To_Include => Last); return Result; end Rainge; function Fixed_Location (Cell : in Cell_T) return Location_T is begin return (1 => ( Address => Processor.Full_Code_Address_Range, Cell => Cell)); end Fixed_Location; function Image (Item : Location_Point_T) return String is begin return Processor.Image (Item.Address) & " => " & Image (Item.Cell); end Image; function Image (Item : Location_T) return String is begin if Item'Length = 0 then return "[none]"; elsif Item'Length = 1 then return Image (Item(Item'First)); else return Image (Item(Item'First)) & ", " & Image (Item(Item'First + 1 .. Item'Last)); end if; end Image; function Image (Item : Location_Ref) return String is begin return Image (Item.all); end Image; -- --- Cells bound to values -- function Image (Item : Cell_Value_T) return String is begin return Image (Item.Cell) & '=' & Arithmetic_Base.Image (Item.Value); end Image; function Image (Item : Cell_Value_List_T) return String is begin if Item'Length = 0 then return ""; elsif Item'Length = 1 then return Image (Item(Item'First)); else return Image (Item(Item'First)) & ", " & Image (Item(Item'First + 1 .. Item'Last)); end if; end Image; function Cells_Of (Item : Cell_Value_List_T) return Cell_List_T is Cells : Cell_List_T (Item'Range); begin for C in Cells'Range loop Cells(C) := Item(C).Cell; end loop; return Cells; end Cells_Of; end Storage;
apple-oss-distributions/old_ncurses
Ada
3,007
ads
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ncurses -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 2000 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Eugene V. Melaragno <[email protected]> 2000 -- Version Control -- $Revision: 1.1.1.1 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ procedure ncurses2.color_edit;
sungyeon/drake
Ada
573
adb
package body System.Native_Directories.File_Names is -- implementation function Equal_File_Names ( FS : Ada.Directories.Volumes.File_System; Left, Right : String) return Boolean is pragma Unreferenced (FS); begin return Left = Right; end Equal_File_Names; function Less_File_Names ( FS : Ada.Directories.Volumes.File_System; Left, Right : String) return Boolean is pragma Unreferenced (FS); begin return Left < Right; end Less_File_Names; end System.Native_Directories.File_Names;
zertovitch/zip-ada
Ada
2,359
adb
-- Zip_Dir_List shows the list of all directories appearing in a Zip archive file. -- -- Tool was originally made for answering: -- -- https://stackoverflow.com/questions/32508443/how-to-get-a-list-of-directories-in-a-zip with Zip; with Show_License; with Ada.Command_Line, Ada.Containers.Indefinite_Ordered_Maps, Ada.Text_IO; procedure Zip_Dir_List is package Dir_Maps is new Ada.Containers.Indefinite_Ordered_Maps (String, String); dir_map : Dir_Maps.Map; procedure Record_Directory (the_path : String) is use Dir_Maps; begin if dir_map.Find (the_path) = No_Element then dir_map.Insert (the_path, the_path); -- We store the path as key *and* element end if; end Record_Directory; procedure Record_Directories (n : String) is begin for i in n'Range loop if n (i) = '/' or n (i) = '\' then -- NB: - A Zip file should use '/' as separator, but some may have it wrong... -- - The search is compatible with UTF-8 strings. Record_Directory (n (n'First .. i)); end if; end loop; end Record_Directories; procedure Record_directories is new Zip.Traverse (Record_Directories); function Try_with_zip (file_name : String) return String is begin if Zip.Exists (file_name) then return file_name; else return file_name & ".zip"; -- Maybe the file doesn't exist, but we tried our best... end if; end Try_with_zip; z : Zip.Zip_info; use Ada.Command_Line, Ada.Text_IO; begin if Argument_Count < 1 then Put_Line ("Zip_Dir_List * Shows the list of all directories appearing in a Zip archive file."); Put_Line ("Demo for the Zip-Ada library, by G. de Montmollin"); Put_Line ("Library version " & Zip.version & " dated " & Zip.reference); Put_Line ("URL: " & Zip.web); Show_License (Current_Output, "zip.ads"); Put_Line ("Usage: zip_dir_list archive[.zip]"); return; end if; declare n : constant String := Try_with_zip (Argument (1)); begin Zip.Load (z, n); exception when Zip.Archive_open_error => Put ("Can't open archive [" & n & ']'); raise; end; -- Record_directories (z); -- -- Show results: -- for d of dir_map loop Put_Line (d); end loop; end Zip_Dir_List;
Fabien-Chouteau/GESTE
Ada
274
ads
package GESTE_Config is subtype Output_Color is Character; type Color_Index is range 1 .. 4; subtype Tile_Index is Natural; No_Tile : constant Tile_Index := 0; Transparent : Constant Output_Color := 'T'; Tile_Size : constant := 5; end GESTE_Config;
charlie5/lace
Ada
16,241
adb
with openGL.Geometry.lit_colored_textured, openGL.Texture, openGL.IO, openGL.Primitive.indexed; package body openGL.Model.capsule.lit_colored_textured is --------- --- Forge -- function new_Capsule (Radius : in Real; Height : in Real; Color : in lucid_Color; Image : in asset_Name := null_Asset) return View is Self : constant View := new Item; begin Self.Radius := Radius; Self.Height := Height; Self.Color := +Color; Self.Image := Image; return Self; end new_Capsule; -------------- --- Attributes -- type Geometry_view is access all Geometry.lit_colored_textured.item'Class; overriding function to_GL_Geometries (Self : access Item; Textures : access Texture.name_Map_of_texture'Class; Fonts : in Font.font_id_Map_of_font) return Geometry.views is pragma unreferenced (Textures, Fonts); use Geometry, Geometry.lit_colored_textured, real_Functions; Length : constant Real := Self.Height; Radius : constant Real := Self.Radius; quality_Level : constant Index_t := 4; sides_Count : constant Index_t := Index_t (quality_Level * 4); -- Number of sides to the cylinder (divisible by 4): type Edge is -- A 'shaft' edge. record Fore : Site; Aft : Site; end record; type Edges is array (Index_t range 1 .. sides_Count) of Edge; type arch_Edges is array (Index_t range 1 .. quality_Level) of Sites (1 .. sides_Count); tmp, nx, ny, nz, start_nx, start_ny : Real; a : constant Real := Pi * 2.0 / Real (sides_Count); ca : constant Real := Cos (a); sa : constant Real := Sin (a); L : constant Real := Length * 0.5; the_Edges : Edges; the_shaft_Geometry : constant Geometry_view := Geometry_view (Geometry.lit_colored_textured.new_Geometry (texture_is_Alpha => False)); cap_1_Geometry : Geometry_view; cap_2_Geometry : Geometry_view; begin -- Define capsule shaft, -- declare vertex_Count : constant Index_t := Index_t (sides_Count * 2 + 2); -- 2 triangles per side plus 2 since we cannot share the first and last edge. indices_Count : constant long_Index_t := long_Index_t (sides_Count * 2 * 3); -- 2 triangles per side with 3 vertices per triangle. the_Vertices : aliased Geometry.lit_colored_textured.Vertex_array := [1 .. vertex_Count => <>]; the_Indices : aliased Indices := [1 .. indices_Count => <>]; begin ny := 1.0; nz := 0.0; -- Normal vector = (0.0, ny, nz) -- Set vertices. -- declare use linear_Algebra; S : Real := 0.0; S_delta : constant Real := 1.0 / Real (sides_Count); i : Index_t := 1; begin for Each in 1 .. Index_t (Edges'Length) loop the_Edges (Each).Fore (1) := ny * Radius; the_Edges (Each).Fore (2) := nz * Radius; the_Edges (Each).Fore (3) := L; the_Edges (Each).Aft (1) := ny * Radius; the_Edges (Each).Aft (2) := nz * Radius; the_Edges (Each).Aft (3) := -L; -- Rotate ny, nz. -- tmp := ca * ny - sa * nz; nz := sa * ny + ca * nz; ny := tmp; the_Vertices (i).Site := the_Edges (Each).Fore; the_Vertices (i).Normal := Normalised ([the_Vertices (i).Site (1), the_Vertices (i).Site (2), 0.0]); the_Vertices (i).Color := Self.Color; the_Vertices (i).Shine := 0.5; the_Vertices (i).Coords := (s => S, t => 1.0); i := i + 1; the_Vertices (i).Site := the_Edges (Each).Aft; the_Vertices (i).Normal := the_Vertices (i - 1).Normal; the_Vertices (i).Color := Self.Color; the_Vertices (i).Shine := 0.5; the_Vertices (i).Coords := (s => S, t => 0.0); i := i + 1; S := S + S_delta; end loop; the_Vertices (i).Site := the_Edges (1).Fore; the_Vertices (i).Normal := Normalised ([the_Vertices (i).Site (1), the_Vertices (i).Site (2), 0.0]); the_Vertices (i).Color := Self.Color; the_Vertices (i).Shine := 0.5; the_Vertices (i).Coords := (s => S, t => 1.0); i := i + 1; the_Vertices (i).Site := the_Edges (1).Aft; the_Vertices (i).Normal := the_Vertices (i - 1).Normal; the_Vertices (i).Color := Self.Color; the_Vertices (i).Shine := 0.5; the_Vertices (i).Coords := (s => S, t => 0.0); end; -- Set indices. -- declare i : long_Index_t := 1; Start : Index_t := 1; begin for Each in 1 .. long_Index_t (sides_Count) loop the_Indices (i) := Start; i := i + 1; the_Indices (i) := Start + 1; i := i + 1; the_Indices (i) := Start + 2; i := i + 1; the_Indices (i) := Start + 1; i := i + 1; the_Indices (i) := Start + 3; i := i + 1; the_Indices (i) := Start + 2; i := i + 1; Start := Start + 2; end loop; end; if Self.Image /= null_Asset then set_Texture: declare use Texture; the_Image : constant Image := IO.to_Image (Self.Image); the_Texture : constant Texture.object := Forge.to_Texture (the_Image); begin the_shaft_Geometry.Texture_is (the_Texture); end set_Texture; end if; Vertices_are (the_shaft_Geometry.all, the_Vertices); declare the_Primitive : constant Primitive.indexed.view := Primitive.indexed.new_Primitive (primitive.Triangles, the_Indices); begin the_shaft_Geometry.add (Primitive.view (the_Primitive)); end; end; declare function new_Cap (is_Fore : Boolean) return Geometry_view is use linear_Algebra; cap_Geometry : constant Geometry_view := Geometry.lit_colored_textured.new_Geometry (texture_is_Alpha => False); hoop_Count : constant Index_t := quality_Level; vertex_Count : constant Index_t := Index_t (Edges'Length * hoop_Count + 1); -- A vertex for each edge of each hoop, + 1 for the pole. indices_Count : constant long_Index_t := long_Index_t ( (hoop_count - 1) * sides_Count * 2 * 3 -- For each hoop, 2 triangles per side with 3 vertices per triangle + sides_Count * 3); -- plus the extra indices for the pole triangles. the_Vertices : aliased Geometry.lit_colored_textured.Vertex_array := [1 .. vertex_Count => <>]; the_Indices : aliased Indices := [1 .. indices_Count => <>]; the_arch_Edges : arch_Edges; i : Index_t := 1; pole_Site : constant Site := (if is_Fore then [0.0, 0.0, L + Radius] else [0.0, 0.0, -L - Radius]); Degrees_90 : constant := Pi / 2.0; Degrees_360 : constant := Pi * 2.0; latitude_Count : constant := hoop_Count + 1; longitude_Count : constant := Edges'Length; latitude_Spacing : constant Real := Degrees_90 / Real (latitude_Count - 1); longitude_Spacing : constant Real := Degrees_360 / Real (longitude_Count); a, b : Real := 0.0; -- Angular 'cursors' used to track lat/long for texture coords. begin if not is_Fore then a := Degrees_360; end if; -- Set the vertices. -- start_nx := 0.0; start_ny := 1.0; for each_Hoop in 1 .. quality_Level loop -- Get n=start_n. -- nx := start_nx; ny := start_ny; nz := 0.0; for Each in 1 .. sides_Count loop the_arch_Edges (each_Hoop) (Each) (1) := ny * Radius; the_arch_Edges (each_Hoop) (Each) (2) := nz * Radius; the_arch_Edges (each_Hoop) (Each) (3) := (if is_Fore then nx * Radius + L else nx * Radius - L); -- Rotate ny, nz. -- tmp := ca * ny - sa * nz; nz := sa * ny + ca * nz; ny := tmp; the_Vertices (i).Site := the_arch_Edges (each_Hoop) (Each); the_Vertices (i).Normal := Normalised ([the_Vertices (i).Site (1), the_Vertices (i).Site (2), (if is_Fore then the_Vertices (i).Site (3) - L else the_Vertices (i).Site (3) + L)]); the_Vertices (i).Color := Self.Color; the_Vertices (i).Shine := 0.5; the_Vertices (i).Coords := (s => a / Degrees_360, t => b / Degrees_90); i := i + 1; a := (if is_Fore then a + longitude_Spacing else a - longitude_Spacing); end loop; declare tmp : constant Real := start_nx; begin if is_Fore then start_nx := ca * start_nx + sa * start_ny; start_ny := -sa * tmp + ca * start_ny; else start_nx := ca * start_nx - sa * start_ny; start_ny := sa * tmp + ca * start_ny; end if; end; a := (if is_Fore then 0.0 else Degrees_360); b := b + latitude_Spacing; end loop; -- Add pole vertex. -- the_Vertices (i).Site := pole_Site; the_Vertices (i).Normal := Normalised (pole_Site); the_Vertices (i).Color := Self.Color; the_Vertices (i).Shine := 0.5; the_Vertices (i).Coords := (s => 0.5, t => 1.0); -- Set indices. -- declare i : long_Index_t := 1; Start : Index_t := 1; hoop_Start : Index_t := 1; pole_Index : constant Index_t := vertex_Count; begin for each_Hoop in 1 .. quality_Level loop for Each in 1 .. sides_Count loop declare function next_hoop_Vertex return Index_t is begin if Each = sides_Count then return hoop_Start; else return Start + 1; end if; end next_hoop_Vertex; begin if each_Hoop = quality_Level then if is_Fore then the_Indices (i) := Start; i := i + 1; the_Indices (i) := next_hoop_Vertex; i := i + 1; the_Indices (i) := pole_Index; i := i + 1; else the_Indices (i) := Start; i := i + 1; the_Indices (i) := pole_Index; i := i + 1; the_Indices (i) := next_hoop_Vertex; i := i + 1; end if; else declare v1 : constant Index_t := Start; v2 : constant Index_t := next_hoop_Vertex; v3 : constant Index_t := v1 + sides_Count; v4 : constant Index_t := v2 + sides_Count; begin if is_Fore then the_Indices (i) := v1; i := i + 1; the_Indices (i) := v2; i := i + 1; the_Indices (i) := v3; i := i + 1; the_Indices (i) := v2; i := i + 1; the_Indices (i) := v4; i := i + 1; the_Indices (i) := v3; i := i + 1; else the_Indices (i) := v1; i := i + 1; the_Indices (i) := v3; i := i + 1; the_Indices (i) := v2; i := i + 1; the_Indices (i) := v2; i := i + 1; the_Indices (i) := v3; i := i + 1; the_Indices (i) := v4; i := i + 1; end if; end; end if; Start := Start + 1; end; end loop; hoop_Start := hoop_Start + sides_Count; end loop; if Self.Image /= null_Asset then set_the_Texture: declare use Texture; the_Image : constant Image := IO.to_Image (Self.Image); the_Texture : constant Texture.object := Forge.to_Texture (the_Image); begin cap_Geometry.Texture_is (the_Texture); end set_the_Texture; end if; Vertices_are (cap_Geometry.all, the_Vertices); declare the_Primitive : constant Primitive.indexed.view := Primitive.indexed.new_Primitive (Primitive.Triangles, the_Indices); begin cap_Geometry.add (Primitive.view (the_Primitive)); end; end; return cap_Geometry; end new_Cap; begin cap_1_Geometry := new_Cap (is_Fore => True); cap_2_Geometry := new_Cap (is_Fore => False); end; return [1 => the_shaft_Geometry.all'Access, 2 => cap_1_Geometry.all'Access, 3 => cap_2_Geometry.all'Access]; end to_GL_Geometries; end openGL.Model.capsule.lit_colored_textured;
coopht/axmpp
Ada
4,724
ads
------------------------------------------------------------------------------ -- -- -- AXMPP Project -- -- -- -- XMPP Library for Ada -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2016, Alexander Basov <[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 Alexander Basov, 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 League.Strings; with XML.SAX.Pretty_Writers; with XMPP.Objects; package XMPP.Streams is type XMPP_Stream is new XMPP.Objects.XMPP_Object with private; type XMPP_Stream_Access is access all XMPP_Stream'Class; function Create return XMPP_Stream_Access; overriding function Get_Kind (Self : XMPP_Stream) return XMPP.Object_Kind; overriding procedure Serialize (Self : XMPP_Stream; Writer : in out XML.SAX.Pretty_Writers.XML_Pretty_Writer'Class); overriding procedure Set_Content (Self : in out XMPP_Stream; Parameter : League.Strings.Universal_String; Value : League.Strings.Universal_String); procedure Set_From (Self : in out XMPP_Stream; Value : League.Strings.Universal_String); procedure Set_Id (Self : in out XMPP_Stream; Value : League.Strings.Universal_String); procedure Set_Id (Self : in out XMPP_Stream; Value : Integer); procedure Set_Lang (Self : in out XMPP_Stream; Value : League.Strings.Universal_String); procedure Set_Version (Self : in out XMPP_Stream; Value : League.Strings.Universal_String); private type XMPP_Stream is new XMPP.Objects.XMPP_Object with record Id : League.Strings.Universal_String; From : League.Strings.Universal_String; Lang : League.Strings.Universal_String; Version : League.Strings.Universal_String; end record; end XMPP.Streams;
AdaCore/Ada_Drivers_Library
Ada
35,894
ads
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2018, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- This file provides declarations for devices on the STM32F469x and -- STM32F479x MCUs manufactured by ST Microelectronics. with STM32_SVD; use STM32_SVD; with STM32_SVD.DSI; with STM32_SVD.SAI; with STM32_SVD.SDIO; with STM32.ADC; use STM32.ADC; with STM32.DAC; use STM32.DAC; with STM32.DMA; use STM32.DMA; with STM32.DSI; use STM32.DSI; with STM32.GPIO; use STM32.GPIO; with STM32.I2C; use STM32.I2C; with STM32.I2C.DMA; use STM32.I2C.DMA; with STM32.SDMMC; use STM32.SDMMC; with STM32.SPI; use STM32.SPI; with STM32.SPI.DMA; use STM32.SPI.DMA; with STM32.I2S; use STM32.I2S; with STM32.Timers; use STM32.Timers; with STM32.USARTs; use STM32.USARTs; with STM32.RTC; use STM32.RTC; with STM32.CRC; use STM32.CRC; package STM32.Device is pragma Elaborate_Body; Unknown_Device : exception; -- Raised by the routines below for a device passed as an actual parameter -- when that device is not present on the given hardware instance. procedure Enable_Clock (This : aliased in out GPIO_Port) with Inline; procedure Enable_Clock (Point : GPIO_Point) with Inline; procedure Enable_Clock (Points : GPIO_Points) with Inline; procedure Reset (This : aliased in out GPIO_Port) with Inline; procedure Reset (Point : GPIO_Point) with Inline; procedure Reset (Points : GPIO_Points) with Inline; GPIO_A : aliased GPIO_Port with Import, Volatile, Address => GPIOA_Base; GPIO_B : aliased GPIO_Port with Import, Volatile, Address => GPIOB_Base; GPIO_C : aliased GPIO_Port with Import, Volatile, Address => GPIOC_Base; GPIO_D : aliased GPIO_Port with Import, Volatile, Address => GPIOD_Base; GPIO_E : aliased GPIO_Port with Import, Volatile, Address => GPIOE_Base; GPIO_F : aliased GPIO_Port with Import, Volatile, Address => GPIOF_Base; GPIO_G : aliased GPIO_Port with Import, Volatile, Address => GPIOG_Base; GPIO_H : aliased GPIO_Port with Import, Volatile, Address => GPIOH_Base; GPIO_I : aliased GPIO_Port with Import, Volatile, Address => GPIOI_Base; GPIO_J : aliased GPIO_Port with Import, Volatile, Address => GPIOJ_Base; GPIO_K : aliased GPIO_Port with Import, Volatile, Address => GPIOK_Base; PA0 : aliased GPIO_Point := (GPIO_A'Access, Pin_0); PA1 : aliased GPIO_Point := (GPIO_A'Access, Pin_1); PA2 : aliased GPIO_Point := (GPIO_A'Access, Pin_2); PA3 : aliased GPIO_Point := (GPIO_A'Access, Pin_3); PA4 : aliased GPIO_Point := (GPIO_A'Access, Pin_4); PA5 : aliased GPIO_Point := (GPIO_A'Access, Pin_5); PA6 : aliased GPIO_Point := (GPIO_A'Access, Pin_6); PA7 : aliased GPIO_Point := (GPIO_A'Access, Pin_7); PA8 : aliased GPIO_Point := (GPIO_A'Access, Pin_8); PA9 : aliased GPIO_Point := (GPIO_A'Access, Pin_9); PA10 : aliased GPIO_Point := (GPIO_A'Access, Pin_10); PA11 : aliased GPIO_Point := (GPIO_A'Access, Pin_11); PA12 : aliased GPIO_Point := (GPIO_A'Access, Pin_12); PA13 : aliased GPIO_Point := (GPIO_A'Access, Pin_13); PA14 : aliased GPIO_Point := (GPIO_A'Access, Pin_14); PA15 : aliased GPIO_Point := (GPIO_A'Access, Pin_15); PB0 : aliased GPIO_Point := (GPIO_B'Access, Pin_0); PB1 : aliased GPIO_Point := (GPIO_B'Access, Pin_1); PB2 : aliased GPIO_Point := (GPIO_B'Access, Pin_2); PB3 : aliased GPIO_Point := (GPIO_B'Access, Pin_3); PB4 : aliased GPIO_Point := (GPIO_B'Access, Pin_4); PB5 : aliased GPIO_Point := (GPIO_B'Access, Pin_5); PB6 : aliased GPIO_Point := (GPIO_B'Access, Pin_6); PB7 : aliased GPIO_Point := (GPIO_B'Access, Pin_7); PB8 : aliased GPIO_Point := (GPIO_B'Access, Pin_8); PB9 : aliased GPIO_Point := (GPIO_B'Access, Pin_9); PB10 : aliased GPIO_Point := (GPIO_B'Access, Pin_10); PB11 : aliased GPIO_Point := (GPIO_B'Access, Pin_11); PB12 : aliased GPIO_Point := (GPIO_B'Access, Pin_12); PB13 : aliased GPIO_Point := (GPIO_B'Access, Pin_13); PB14 : aliased GPIO_Point := (GPIO_B'Access, Pin_14); PB15 : aliased GPIO_Point := (GPIO_B'Access, Pin_15); PC0 : aliased GPIO_Point := (GPIO_C'Access, Pin_0); PC1 : aliased GPIO_Point := (GPIO_C'Access, Pin_1); PC2 : aliased GPIO_Point := (GPIO_C'Access, Pin_2); PC3 : aliased GPIO_Point := (GPIO_C'Access, Pin_3); PC4 : aliased GPIO_Point := (GPIO_C'Access, Pin_4); PC5 : aliased GPIO_Point := (GPIO_C'Access, Pin_5); PC6 : aliased GPIO_Point := (GPIO_C'Access, Pin_6); PC7 : aliased GPIO_Point := (GPIO_C'Access, Pin_7); PC8 : aliased GPIO_Point := (GPIO_C'Access, Pin_8); PC9 : aliased GPIO_Point := (GPIO_C'Access, Pin_9); PC10 : aliased GPIO_Point := (GPIO_C'Access, Pin_10); PC11 : aliased GPIO_Point := (GPIO_C'Access, Pin_11); PC12 : aliased GPIO_Point := (GPIO_C'Access, Pin_12); PC13 : aliased GPIO_Point := (GPIO_C'Access, Pin_13); PC14 : aliased GPIO_Point := (GPIO_C'Access, Pin_14); PC15 : aliased GPIO_Point := (GPIO_C'Access, Pin_15); PD0 : aliased GPIO_Point := (GPIO_D'Access, Pin_0); PD1 : aliased GPIO_Point := (GPIO_D'Access, Pin_1); PD2 : aliased GPIO_Point := (GPIO_D'Access, Pin_2); PD3 : aliased GPIO_Point := (GPIO_D'Access, Pin_3); PD4 : aliased GPIO_Point := (GPIO_D'Access, Pin_4); PD5 : aliased GPIO_Point := (GPIO_D'Access, Pin_5); PD6 : aliased GPIO_Point := (GPIO_D'Access, Pin_6); PD7 : aliased GPIO_Point := (GPIO_D'Access, Pin_7); PD8 : aliased GPIO_Point := (GPIO_D'Access, Pin_8); PD9 : aliased GPIO_Point := (GPIO_D'Access, Pin_9); PD10 : aliased GPIO_Point := (GPIO_D'Access, Pin_10); PD11 : aliased GPIO_Point := (GPIO_D'Access, Pin_11); PD12 : aliased GPIO_Point := (GPIO_D'Access, Pin_12); PD13 : aliased GPIO_Point := (GPIO_D'Access, Pin_13); PD14 : aliased GPIO_Point := (GPIO_D'Access, Pin_14); PD15 : aliased GPIO_Point := (GPIO_D'Access, Pin_15); PE0 : aliased GPIO_Point := (GPIO_E'Access, Pin_0); PE1 : aliased GPIO_Point := (GPIO_E'Access, Pin_1); PE2 : aliased GPIO_Point := (GPIO_E'Access, Pin_2); PE3 : aliased GPIO_Point := (GPIO_E'Access, Pin_3); PE4 : aliased GPIO_Point := (GPIO_E'Access, Pin_4); PE5 : aliased GPIO_Point := (GPIO_E'Access, Pin_5); PE6 : aliased GPIO_Point := (GPIO_E'Access, Pin_6); PE7 : aliased GPIO_Point := (GPIO_E'Access, Pin_7); PE8 : aliased GPIO_Point := (GPIO_E'Access, Pin_8); PE9 : aliased GPIO_Point := (GPIO_E'Access, Pin_9); PE10 : aliased GPIO_Point := (GPIO_E'Access, Pin_10); PE11 : aliased GPIO_Point := (GPIO_E'Access, Pin_11); PE12 : aliased GPIO_Point := (GPIO_E'Access, Pin_12); PE13 : aliased GPIO_Point := (GPIO_E'Access, Pin_13); PE14 : aliased GPIO_Point := (GPIO_E'Access, Pin_14); PE15 : aliased GPIO_Point := (GPIO_E'Access, Pin_15); PF0 : aliased GPIO_Point := (GPIO_F'Access, Pin_0); PF1 : aliased GPIO_Point := (GPIO_F'Access, Pin_1); PF2 : aliased GPIO_Point := (GPIO_F'Access, Pin_2); PF3 : aliased GPIO_Point := (GPIO_F'Access, Pin_3); PF4 : aliased GPIO_Point := (GPIO_F'Access, Pin_4); PF5 : aliased GPIO_Point := (GPIO_F'Access, Pin_5); PF6 : aliased GPIO_Point := (GPIO_F'Access, Pin_6); PF7 : aliased GPIO_Point := (GPIO_F'Access, Pin_7); PF8 : aliased GPIO_Point := (GPIO_F'Access, Pin_8); PF9 : aliased GPIO_Point := (GPIO_F'Access, Pin_9); PF10 : aliased GPIO_Point := (GPIO_F'Access, Pin_10); PF11 : aliased GPIO_Point := (GPIO_F'Access, Pin_11); PF12 : aliased GPIO_Point := (GPIO_F'Access, Pin_12); PF13 : aliased GPIO_Point := (GPIO_F'Access, Pin_13); PF14 : aliased GPIO_Point := (GPIO_F'Access, Pin_14); PF15 : aliased GPIO_Point := (GPIO_F'Access, Pin_15); PG0 : aliased GPIO_Point := (GPIO_G'Access, Pin_0); PG1 : aliased GPIO_Point := (GPIO_G'Access, Pin_1); PG2 : aliased GPIO_Point := (GPIO_G'Access, Pin_2); PG3 : aliased GPIO_Point := (GPIO_G'Access, Pin_3); PG4 : aliased GPIO_Point := (GPIO_G'Access, Pin_4); PG5 : aliased GPIO_Point := (GPIO_G'Access, Pin_5); PG6 : aliased GPIO_Point := (GPIO_G'Access, Pin_6); PG7 : aliased GPIO_Point := (GPIO_G'Access, Pin_7); PG8 : aliased GPIO_Point := (GPIO_G'Access, Pin_8); PG9 : aliased GPIO_Point := (GPIO_G'Access, Pin_9); PG10 : aliased GPIO_Point := (GPIO_G'Access, Pin_10); PG11 : aliased GPIO_Point := (GPIO_G'Access, Pin_11); PG12 : aliased GPIO_Point := (GPIO_G'Access, Pin_12); PG13 : aliased GPIO_Point := (GPIO_G'Access, Pin_13); PG14 : aliased GPIO_Point := (GPIO_G'Access, Pin_14); PG15 : aliased GPIO_Point := (GPIO_G'Access, Pin_15); PH0 : aliased GPIO_Point := (GPIO_H'Access, Pin_0); PH1 : aliased GPIO_Point := (GPIO_H'Access, Pin_1); PH2 : aliased GPIO_Point := (GPIO_H'Access, Pin_2); PH3 : aliased GPIO_Point := (GPIO_H'Access, Pin_3); PH4 : aliased GPIO_Point := (GPIO_H'Access, Pin_4); PH5 : aliased GPIO_Point := (GPIO_H'Access, Pin_5); PH6 : aliased GPIO_Point := (GPIO_H'Access, Pin_6); PH7 : aliased GPIO_Point := (GPIO_H'Access, Pin_7); PH8 : aliased GPIO_Point := (GPIO_H'Access, Pin_8); PH9 : aliased GPIO_Point := (GPIO_H'Access, Pin_9); PH10 : aliased GPIO_Point := (GPIO_H'Access, Pin_10); PH11 : aliased GPIO_Point := (GPIO_H'Access, Pin_11); PH12 : aliased GPIO_Point := (GPIO_H'Access, Pin_12); PH13 : aliased GPIO_Point := (GPIO_H'Access, Pin_13); PH14 : aliased GPIO_Point := (GPIO_H'Access, Pin_14); PH15 : aliased GPIO_Point := (GPIO_H'Access, Pin_15); PI0 : aliased GPIO_Point := (GPIO_I'Access, Pin_0); PI1 : aliased GPIO_Point := (GPIO_I'Access, Pin_1); PI2 : aliased GPIO_Point := (GPIO_I'Access, Pin_2); PI3 : aliased GPIO_Point := (GPIO_I'Access, Pin_3); PI4 : aliased GPIO_Point := (GPIO_I'Access, Pin_4); PI5 : aliased GPIO_Point := (GPIO_I'Access, Pin_5); PI6 : aliased GPIO_Point := (GPIO_I'Access, Pin_6); PI7 : aliased GPIO_Point := (GPIO_I'Access, Pin_7); PI8 : aliased GPIO_Point := (GPIO_I'Access, Pin_8); PI9 : aliased GPIO_Point := (GPIO_I'Access, Pin_9); PI10 : aliased GPIO_Point := (GPIO_I'Access, Pin_10); PI11 : aliased GPIO_Point := (GPIO_I'Access, Pin_11); PI12 : aliased GPIO_Point := (GPIO_I'Access, Pin_12); PI13 : aliased GPIO_Point := (GPIO_I'Access, Pin_13); PI14 : aliased GPIO_Point := (GPIO_I'Access, Pin_14); PI15 : aliased GPIO_Point := (GPIO_I'Access, Pin_15); PJ0 : aliased GPIO_Point := (GPIO_J'Access, Pin_0); PJ1 : aliased GPIO_Point := (GPIO_J'Access, Pin_1); PJ2 : aliased GPIO_Point := (GPIO_J'Access, Pin_2); PJ3 : aliased GPIO_Point := (GPIO_J'Access, Pin_3); PJ4 : aliased GPIO_Point := (GPIO_J'Access, Pin_4); PJ5 : aliased GPIO_Point := (GPIO_J'Access, Pin_5); PJ6 : aliased GPIO_Point := (GPIO_J'Access, Pin_6); PJ7 : aliased GPIO_Point := (GPIO_J'Access, Pin_7); PJ8 : aliased GPIO_Point := (GPIO_J'Access, Pin_8); PJ9 : aliased GPIO_Point := (GPIO_J'Access, Pin_9); PJ10 : aliased GPIO_Point := (GPIO_J'Access, Pin_10); PJ11 : aliased GPIO_Point := (GPIO_J'Access, Pin_11); PJ12 : aliased GPIO_Point := (GPIO_J'Access, Pin_12); PJ13 : aliased GPIO_Point := (GPIO_J'Access, Pin_13); PJ14 : aliased GPIO_Point := (GPIO_J'Access, Pin_14); PJ15 : aliased GPIO_Point := (GPIO_J'Access, Pin_15); PK0 : aliased GPIO_Point := (GPIO_K'Access, Pin_0); PK1 : aliased GPIO_Point := (GPIO_K'Access, Pin_1); PK2 : aliased GPIO_Point := (GPIO_K'Access, Pin_2); PK3 : aliased GPIO_Point := (GPIO_K'Access, Pin_3); PK4 : aliased GPIO_Point := (GPIO_K'Access, Pin_4); PK5 : aliased GPIO_Point := (GPIO_K'Access, Pin_5); PK6 : aliased GPIO_Point := (GPIO_K'Access, Pin_6); PK7 : aliased GPIO_Point := (GPIO_K'Access, Pin_7); PK8 : aliased GPIO_Point := (GPIO_K'Access, Pin_8); PK9 : aliased GPIO_Point := (GPIO_K'Access, Pin_9); PK10 : aliased GPIO_Point := (GPIO_K'Access, Pin_10); PK11 : aliased GPIO_Point := (GPIO_K'Access, Pin_11); PK12 : aliased GPIO_Point := (GPIO_K'Access, Pin_12); PK13 : aliased GPIO_Point := (GPIO_K'Access, Pin_13); PK14 : aliased GPIO_Point := (GPIO_K'Access, Pin_14); PK15 : aliased GPIO_Point := (GPIO_K'Access, Pin_15); GPIO_AF_RTC_50Hz_0 : constant GPIO_Alternate_Function; GPIO_AF_MCO_0 : constant GPIO_Alternate_Function; GPIO_AF_TAMPER_0 : constant GPIO_Alternate_Function; GPIO_AF_SWJ_0 : constant GPIO_Alternate_Function; GPIO_AF_TRACE_0 : constant GPIO_Alternate_Function; GPIO_AF_TIM1_1 : constant GPIO_Alternate_Function; GPIO_AF_TIM2_1 : constant GPIO_Alternate_Function; GPIO_AF_I2C4_1 : constant GPIO_Alternate_Function; GPIO_AF_UART5_1 : constant GPIO_Alternate_Function; GPIO_AF_TIM3_2 : constant GPIO_Alternate_Function; GPIO_AF_TIM4_2 : constant GPIO_Alternate_Function; GPIO_AF_TIM5_2 : constant GPIO_Alternate_Function; GPIO_AF_TIM8_3 : constant GPIO_Alternate_Function; GPIO_AF_TIM9_3 : constant GPIO_Alternate_Function; GPIO_AF_TIM10_3 : constant GPIO_Alternate_Function; GPIO_AF_TIM11_3 : constant GPIO_Alternate_Function; GPIO_AF_LPTIM1_3 : constant GPIO_Alternate_Function; GPIO_AF_DFSDM1_3 : constant GPIO_Alternate_Function; GPIO_AF_CEC_3 : constant GPIO_Alternate_Function; GPIO_AF_I2C1_4 : constant GPIO_Alternate_Function; GPIO_AF_I2C2_4 : constant GPIO_Alternate_Function; GPIO_AF_I2C3_4 : constant GPIO_Alternate_Function; GPIO_AF_I2C4_4 : constant GPIO_Alternate_Function; GPIO_AF_USART1_4 : constant GPIO_Alternate_Function; GPIO_AF_CEC_4 : constant GPIO_Alternate_Function; GPIO_AF_SPI1_5 : constant GPIO_Alternate_Function; GPIO_AF_I2S1_5 : constant GPIO_Alternate_Function; GPIO_AF_SPI2_5 : constant GPIO_Alternate_Function; GPIO_AF_I2S2_5 : constant GPIO_Alternate_Function; GPIO_AF_SPI3_5 : constant GPIO_Alternate_Function; GPIO_AF_I2S3_5 : constant GPIO_Alternate_Function; GPIO_AF_SPI4_5 : constant GPIO_Alternate_Function; GPIO_AF_SPI5_5 : constant GPIO_Alternate_Function; GPIO_AF_SPI6_5 : constant GPIO_Alternate_Function; GPIO_AF_SPI2_6 : constant GPIO_Alternate_Function; GPIO_AF_I2S2_6 : constant GPIO_Alternate_Function; GPIO_AF_SPI3_6 : constant GPIO_Alternate_Function; GPIO_AF_I2S3_6 : constant GPIO_Alternate_Function; GPIO_AF_SAI1_6 : constant GPIO_Alternate_Function; GPIO_AF_UART4_6 : constant GPIO_Alternate_Function; GPIO_AF_DFSDM1_6 : constant GPIO_Alternate_Function; GPIO_AF_SPI2_7 : constant GPIO_Alternate_Function; GPIO_AF_I2S2_7 : constant GPIO_Alternate_Function; GPIO_AF_SPI3_7 : constant GPIO_Alternate_Function; GPIO_AF_I2S3_7 : constant GPIO_Alternate_Function; GPIO_AF_SPI6_7 : constant GPIO_Alternate_Function; GPIO_AF_USART1_7 : constant GPIO_Alternate_Function; GPIO_AF_USART2_7 : constant GPIO_Alternate_Function; GPIO_AF_USART3_7 : constant GPIO_Alternate_Function; GPIO_AF_UART5_7 : constant GPIO_Alternate_Function; GPIO_AF_DFSDM1_7 : constant GPIO_Alternate_Function; GPIO_AF_SPDIF_7 : constant GPIO_Alternate_Function; GPIO_AF_SPI6_8 : constant GPIO_Alternate_Function; GPIO_AF_SAI2_8 : constant GPIO_Alternate_Function; GPIO_AF_UART4_8 : constant GPIO_Alternate_Function; GPIO_AF_UART5_8 : constant GPIO_Alternate_Function; GPIO_AF_USART6_8 : constant GPIO_Alternate_Function; GPIO_AF_UART7_8 : constant GPIO_Alternate_Function; GPIO_AF_UART8_8 : constant GPIO_Alternate_Function; GPIO_AF_OTG_FS_8 : constant GPIO_Alternate_Function; GPIO_AF_SPDIF_8 : constant GPIO_Alternate_Function; GPIO_AF_CAN1_9 : constant GPIO_Alternate_Function; GPIO_AF_CAN2_9 : constant GPIO_Alternate_Function; GPIO_AF_TIM12_9 : constant GPIO_Alternate_Function; GPIO_AF_TIM13_9 : constant GPIO_Alternate_Function; GPIO_AF_TIM14_9 : constant GPIO_Alternate_Function; GPIO_AF_QUADSPI_9 : constant GPIO_Alternate_Function; GPIO_AF_FMC_9 : constant GPIO_Alternate_Function; GPIO_AF_LTDC_9 : constant GPIO_Alternate_Function; GPIO_AF_SAI2_10 : constant GPIO_Alternate_Function; GPIO_AF_QUADSPI_10 : constant GPIO_Alternate_Function; GPIO_AF_DFSDM1_10 : constant GPIO_Alternate_Function; GPIO_AF_OTG1_FS_10 : constant GPIO_Alternate_Function; GPIO_AF_OTG_HS_10 : constant GPIO_Alternate_Function; GPIO_AF_LTDC_10 : constant GPIO_Alternate_Function; GPIO_AF_I2C4_11 : constant GPIO_Alternate_Function; GPIO_AF_CAN3_11 : constant GPIO_Alternate_Function; GPIO_AF_SDMMC2_11 : constant GPIO_Alternate_Function; GPIO_AF_ETH_11 : constant GPIO_Alternate_Function; GPIO_AF_UART7_12 : constant GPIO_Alternate_Function; GPIO_AF_FMC_12 : constant GPIO_Alternate_Function; GPIO_AF_SDIO_12 : constant GPIO_Alternate_Function; GPIO_AF_MDIOS_12 : constant GPIO_Alternate_Function; GPIO_AF_OTG2_FS_12 : constant GPIO_Alternate_Function; GPIO_AF_DCMI_13 : constant GPIO_Alternate_Function; GPIO_AF_DSI_13 : constant GPIO_Alternate_Function; GPIO_AF_LTDC_13 : constant GPIO_Alternate_Function; GPIO_AF_LTDC_14 : constant GPIO_Alternate_Function; GPIO_AF_EVENTOUT_15 : constant GPIO_Alternate_Function; function GPIO_Port_Representation (Port : GPIO_Port) return UInt4 with Inline; ADC_1 : aliased Analog_To_Digital_Converter with Import, Volatile, Address => ADC1_Base; ADC_2 : aliased Analog_To_Digital_Converter with Import, Volatile, Address => ADC2_Base; ADC_3 : aliased Analog_To_Digital_Converter with Import, Volatile, Address => ADC3_Base; VBat : constant ADC_Point := (ADC_1'Access, Channel => VBat_Channel); Temperature_Sensor : constant ADC_Point := VBat; -- see RM pg 410, section 13.10, also pg 389 VBat_Bridge_Divisor : constant := 4; -- The VBAT pin is internally connected to a bridge divider. The actual -- voltage is the raw conversion value * the divisor. See section 13.11, -- pg 412 of the RM. procedure Enable_Clock (This : aliased in out Analog_To_Digital_Converter); procedure Reset_All_ADC_Units; DAC_1 : aliased Digital_To_Analog_Converter with Import, Volatile, Address => DAC_Base; DAC_Channel_1_IO : constant GPIO_Point := PA4; DAC_Channel_2_IO : constant GPIO_Point := PA5; procedure Enable_Clock (This : aliased in out Digital_To_Analog_Converter); procedure Reset (This : aliased in out Digital_To_Analog_Converter); Internal_USART_1 : aliased Internal_USART with Import, Volatile, Address => USART1_Base; Internal_USART_2 : aliased Internal_USART with Import, Volatile, Address => USART2_Base; Internal_USART_3 : aliased Internal_USART with Import, Volatile, Address => USART3_Base; Internal_UART_4 : aliased Internal_USART with Import, Volatile, Address => UART4_Base; Internal_UART_5 : aliased Internal_USART with Import, Volatile, Address => UART5_Base; Internal_USART_6 : aliased Internal_USART with Import, Volatile, Address => USART6_Base; USART_1 : aliased USART (Internal_USART_1'Access); USART_2 : aliased USART (Internal_USART_2'Access); USART_3 : aliased USART (Internal_USART_3'Access); UART_4 : aliased USART (Internal_UART_4'Access); UART_5 : aliased USART (Internal_UART_5'Access); USART_6 : aliased USART (Internal_USART_6'Access); procedure Enable_Clock (This : aliased in out USART); procedure Reset (This : aliased in out USART); DMA_1 : aliased DMA_Controller with Import, Volatile, Address => DMA1_Base; DMA_2 : aliased DMA_Controller with Import, Volatile, Address => DMA2_Base; procedure Enable_Clock (This : aliased in out DMA_Controller); procedure Reset (This : aliased in out DMA_Controller); Internal_I2C_Port_1 : aliased Internal_I2C_Port with Import, Volatile, Address => I2C1_Base; Internal_I2C_Port_2 : aliased Internal_I2C_Port with Import, Volatile, Address => I2C2_Base; Internal_I2C_Port_3 : aliased Internal_I2C_Port with Import, Volatile, Address => I2C3_Base; type I2C_Port_Id is (I2C_Id_1, I2C_Id_2, I2C_Id_3); I2C_1 : aliased I2C_Port (Internal_I2C_Port_1'Access); I2C_2 : aliased I2C_Port (Internal_I2C_Port_2'Access); I2C_3 : aliased I2C_Port (Internal_I2C_Port_3'Access); I2C_1_DMA : aliased I2C_Port_DMA (Internal_I2C_Port_1'Access); I2C_2_DMA : aliased I2C_Port_DMA (Internal_I2C_Port_2'Access); I2C_3_DMA : aliased I2C_Port_DMA (Internal_I2C_Port_3'Access); function As_Port_Id (Port : I2C_Port'Class) return I2C_Port_Id with Inline; procedure Enable_Clock (This : I2C_Port'Class); procedure Enable_Clock (This : I2C_Port_Id); procedure Reset (This : I2C_Port'Class); procedure Reset (This : I2C_Port_Id); Internal_SPI_1 : aliased Internal_SPI_Port with Import, Volatile, Address => SPI1_Base; Internal_SPI_2 : aliased Internal_SPI_Port with Import, Volatile, Address => SPI2_Base; Internal_SPI_3 : aliased Internal_SPI_Port with Import, Volatile, Address => SPI3_Base; Internal_SPI_4 : aliased Internal_SPI_Port with Import, Volatile, Address => SPI4_Base; Internal_SPI_5 : aliased Internal_SPI_Port with Import, Volatile, Address => SPI5_Base; Internal_SPI_6 : aliased Internal_SPI_Port with Import, Volatile, Address => SPI6_Base; SPI_1 : aliased SPI_Port (Internal_SPI_1'Access); SPI_2 : aliased SPI_Port (Internal_SPI_2'Access); SPI_3 : aliased SPI_Port (Internal_SPI_3'Access); SPI_4 : aliased SPI_Port (Internal_SPI_4'Access); SPI_5 : aliased SPI_Port (Internal_SPI_5'Access); SPI_6 : aliased SPI_Port (Internal_SPI_6'Access); SPI_1_DMA : aliased SPI_Port_DMA (Internal_SPI_1'Access); SPI_2_DMA : aliased SPI_Port_DMA (Internal_SPI_2'Access); SPI_3_DMA : aliased SPI_Port_DMA (Internal_SPI_3'Access); SPI_4_DMA : aliased SPI_Port_DMA (Internal_SPI_4'Access); SPI_5_DMA : aliased SPI_Port_DMA (Internal_SPI_5'Access); SPI_6_DMA : aliased SPI_Port_DMA (Internal_SPI_6'Access); procedure Enable_Clock (This : aliased in out SPI_Port'Class); procedure Reset (This : in out SPI_Port'Class); Internal_I2S_1 : aliased Internal_I2S_Port with Import, Volatile, Address => SPI1_Base; Internal_I2S_2 : aliased Internal_I2S_Port with Import, Volatile, Address => SPI2_Base; Internal_I2S_3 : aliased Internal_I2S_Port with Import, Volatile, Address => SPI3_Base; Internal_I2S_4 : aliased Internal_I2S_Port with Import, Volatile, Address => SPI4_Base; Internal_I2S_5 : aliased Internal_I2S_Port with Import, Volatile, Address => SPI5_Base; Internal_I2S_6 : aliased Internal_I2S_Port with Import, Volatile, Address => SPI6_Base; Internal_I2S_2_Ext : aliased Internal_I2S_Port with Import, Volatile, Address => I2S2ext_Base; Internal_I2S_3_Ext : aliased Internal_I2S_Port with Import, Volatile, Address => I2S3ext_Base; I2S_1 : aliased I2S_Port (Internal_I2S_1'Access, Extended => False); I2S_2 : aliased I2S_Port (Internal_I2S_2'Access, Extended => False); I2S_3 : aliased I2S_Port (Internal_I2S_3'Access, Extended => False); I2S_4 : aliased I2S_Port (Internal_I2S_4'Access, Extended => False); I2S_5 : aliased I2S_Port (Internal_I2S_5'Access, Extended => False); I2S_6 : aliased I2S_Port (Internal_I2S_6'Access, Extended => False); I2S_2_Ext : aliased I2S_Port (Internal_I2S_2_Ext'Access, Extended => True); I2S_3_Ext : aliased I2S_Port (Internal_I2S_3_Ext'Access, Extended => True); procedure Enable_Clock (This : I2S_Port); procedure Reset (This : in out I2S_Port); Timer_1 : aliased Timer with Volatile, Address => TIM1_Base; pragma Import (Ada, Timer_1); Timer_2 : aliased Timer with Volatile, Address => TIM2_Base; pragma Import (Ada, Timer_2); Timer_3 : aliased Timer with Volatile, Address => TIM3_Base; pragma Import (Ada, Timer_3); Timer_4 : aliased Timer with Volatile, Address => TIM4_Base; pragma Import (Ada, Timer_4); Timer_5 : aliased Timer with Volatile, Address => TIM5_Base; pragma Import (Ada, Timer_5); Timer_6 : aliased Timer with Volatile, Address => TIM6_Base; pragma Import (Ada, Timer_6); Timer_7 : aliased Timer with Volatile, Address => TIM7_Base; pragma Import (Ada, Timer_7); Timer_8 : aliased Timer with Volatile, Address => TIM8_Base; pragma Import (Ada, Timer_8); Timer_9 : aliased Timer with Volatile, Address => TIM9_Base; pragma Import (Ada, Timer_9); Timer_10 : aliased Timer with Volatile, Address => TIM10_Base; pragma Import (Ada, Timer_10); Timer_11 : aliased Timer with Volatile, Address => TIM11_Base; pragma Import (Ada, Timer_11); Timer_12 : aliased Timer with Volatile, Address => TIM12_Base; pragma Import (Ada, Timer_12); Timer_13 : aliased Timer with Volatile, Address => TIM13_Base; pragma Import (Ada, Timer_13); Timer_14 : aliased Timer with Volatile, Address => TIM14_Base; pragma Import (Ada, Timer_14); procedure Enable_Clock (This : in out Timer); procedure Reset (This : in out Timer); -------------- -- DSI Host -- -------------- DSIHOST : aliased DSI_Host (STM32_SVD.DSI.DSI_Periph'Access); ----------- -- Audio -- ----------- subtype SAI_Port is STM32_SVD.SAI.SAI_Peripheral; SAI_1 : SAI_Port renames STM32_SVD.SAI.SAI_Periph; procedure Enable_Clock (This : in out SAI_Port); procedure Reset (This : in out SAI_Port); function Get_Input_Clock (Periph : SAI_Port) return UInt32; ----------- -- SDMMC -- ----------- SDIO : aliased SDMMC_Controller (STM32_SVD.SDIO.SDIO_Periph'Access); type SDIO_Clock_Source is (Src_Sysclk, Src_48Mhz); procedure Enable_Clock (This : in out SDMMC_Controller); procedure Reset (This : in out SDMMC_Controller); procedure Set_Clock_Source (This : in out SDMMC_Controller; Src : SDIO_Clock_Source); --------- -- CRC -- --------- CRC_Unit : CRC_32 with Import, Volatile, Address => CRC_Base; procedure Enable_Clock (This : in out CRC_32); procedure Disable_Clock (This : in out CRC_32); procedure Reset (This : in out CRC_32); ----------------------------- -- Reset and Clock Control -- ----------------------------- type RCC_System_Clocks is record SYSCLK : UInt32; HCLK : UInt32; PCLK1 : UInt32; PCLK2 : UInt32; TIMCLK1 : UInt32; TIMCLK2 : UInt32; I2SCLK : UInt32; end record; function System_Clock_Frequencies return RCC_System_Clocks; procedure Set_PLLI2S_Factors (Pll_N : UInt9; Pll_R : UInt3); function PLLI2S_Enabled return Boolean; procedure Enable_PLLI2S with Post => PLLI2S_Enabled; procedure Disable_PLLI2S with Post => not PLLI2S_Enabled; type PLLSAI_DivR is new UInt2; PLLSAI_DIV2 : constant PLLSAI_DivR := 0; PLLSAI_DIV4 : constant PLLSAI_DivR := 1; PLLSAI_DIV8 : constant PLLSAI_DivR := 2; PLLSAI_DIV16 : constant PLLSAI_DivR := 3; procedure Set_PLLSAI_Factors (LCD : UInt3; VCO : UInt9; DivR : PLLSAI_DivR); procedure Enable_PLLSAI; procedure Disable_PLLSAI; subtype DIVQ is Natural range 1 .. 32; -- procedure Enable_PLLI2S; -- procedure Disable_PLLI2S; procedure Configure_SAI_I2S_Clock (Periph : SAI_Port; PLLI2SN : UInt9; PLLI2SQ : UInt4; PLLI2SDIVQ : DIVQ); procedure Enable_DCMI_Clock; procedure Reset_DCMI; RTC : aliased RTC_Device; private GPIO_AF_RTC_50Hz_0 : constant GPIO_Alternate_Function := 0; GPIO_AF_MCO_0 : constant GPIO_Alternate_Function := 0; GPIO_AF_TAMPER_0 : constant GPIO_Alternate_Function := 0; GPIO_AF_SWJ_0 : constant GPIO_Alternate_Function := 0; GPIO_AF_TRACE_0 : constant GPIO_Alternate_Function := 0; GPIO_AF_TIM1_1 : constant GPIO_Alternate_Function := 1; GPIO_AF_TIM2_1 : constant GPIO_Alternate_Function := 1; GPIO_AF_I2C4_1 : constant GPIO_Alternate_Function := 1; GPIO_AF_UART5_1 : constant GPIO_Alternate_Function := 1; GPIO_AF_TIM3_2 : constant GPIO_Alternate_Function := 2; GPIO_AF_TIM4_2 : constant GPIO_Alternate_Function := 2; GPIO_AF_TIM5_2 : constant GPIO_Alternate_Function := 2; GPIO_AF_TIM8_3 : constant GPIO_Alternate_Function := 3; GPIO_AF_TIM9_3 : constant GPIO_Alternate_Function := 3; GPIO_AF_TIM10_3 : constant GPIO_Alternate_Function := 3; GPIO_AF_TIM11_3 : constant GPIO_Alternate_Function := 3; GPIO_AF_LPTIM1_3 : constant GPIO_Alternate_Function := 3; GPIO_AF_DFSDM1_3 : constant GPIO_Alternate_Function := 3; GPIO_AF_CEC_3 : constant GPIO_Alternate_Function := 3; GPIO_AF_I2C1_4 : constant GPIO_Alternate_Function := 4; GPIO_AF_I2C2_4 : constant GPIO_Alternate_Function := 4; GPIO_AF_I2C3_4 : constant GPIO_Alternate_Function := 4; GPIO_AF_I2C4_4 : constant GPIO_Alternate_Function := 4; GPIO_AF_USART1_4 : constant GPIO_Alternate_Function := 4; GPIO_AF_CEC_4 : constant GPIO_Alternate_Function := 4; GPIO_AF_SPI1_5 : constant GPIO_Alternate_Function := 5; GPIO_AF_I2S1_5 : constant GPIO_Alternate_Function := 5; GPIO_AF_SPI2_5 : constant GPIO_Alternate_Function := 5; GPIO_AF_I2S2_5 : constant GPIO_Alternate_Function := 5; GPIO_AF_SPI3_5 : constant GPIO_Alternate_Function := 5; GPIO_AF_I2S3_5 : constant GPIO_Alternate_Function := 5; GPIO_AF_SPI4_5 : constant GPIO_Alternate_Function := 5; GPIO_AF_SPI5_5 : constant GPIO_Alternate_Function := 5; GPIO_AF_SPI6_5 : constant GPIO_Alternate_Function := 5; GPIO_AF_SPI2_6 : constant GPIO_Alternate_Function := 6; GPIO_AF_I2S2_6 : constant GPIO_Alternate_Function := 6; GPIO_AF_SPI3_6 : constant GPIO_Alternate_Function := 6; GPIO_AF_I2S3_6 : constant GPIO_Alternate_Function := 6; GPIO_AF_SAI1_6 : constant GPIO_Alternate_Function := 6; GPIO_AF_UART4_6 : constant GPIO_Alternate_Function := 6; GPIO_AF_DFSDM1_6 : constant GPIO_Alternate_Function := 6; GPIO_AF_SPI2_7 : constant GPIO_Alternate_Function := 7; GPIO_AF_I2S2_7 : constant GPIO_Alternate_Function := 7; GPIO_AF_SPI3_7 : constant GPIO_Alternate_Function := 7; GPIO_AF_I2S3_7 : constant GPIO_Alternate_Function := 7; GPIO_AF_SPI6_7 : constant GPIO_Alternate_Function := 7; GPIO_AF_USART1_7 : constant GPIO_Alternate_Function := 7; GPIO_AF_USART2_7 : constant GPIO_Alternate_Function := 7; GPIO_AF_USART3_7 : constant GPIO_Alternate_Function := 7; GPIO_AF_UART5_7 : constant GPIO_Alternate_Function := 7; GPIO_AF_DFSDM1_7 : constant GPIO_Alternate_Function := 7; GPIO_AF_SPDIF_7 : constant GPIO_Alternate_Function := 8; GPIO_AF_SPI6_8 : constant GPIO_Alternate_Function := 8; GPIO_AF_SAI2_8 : constant GPIO_Alternate_Function := 8; GPIO_AF_UART4_8 : constant GPIO_Alternate_Function := 8; GPIO_AF_UART5_8 : constant GPIO_Alternate_Function := 8; GPIO_AF_USART6_8 : constant GPIO_Alternate_Function := 8; GPIO_AF_UART7_8 : constant GPIO_Alternate_Function := 8; GPIO_AF_UART8_8 : constant GPIO_Alternate_Function := 8; GPIO_AF_OTG_FS_8 : constant GPIO_Alternate_Function := 8; GPIO_AF_SPDIF_8 : constant GPIO_Alternate_Function := 8; GPIO_AF_CAN1_9 : constant GPIO_Alternate_Function := 9; GPIO_AF_CAN2_9 : constant GPIO_Alternate_Function := 9; GPIO_AF_TIM12_9 : constant GPIO_Alternate_Function := 9; GPIO_AF_TIM13_9 : constant GPIO_Alternate_Function := 9; GPIO_AF_TIM14_9 : constant GPIO_Alternate_Function := 9; GPIO_AF_QUADSPI_9 : constant GPIO_Alternate_Function := 9; GPIO_AF_FMC_9 : constant GPIO_Alternate_Function := 9; GPIO_AF_LTDC_9 : constant GPIO_Alternate_Function := 9; GPIO_AF_SAI2_10 : constant GPIO_Alternate_Function := 10; GPIO_AF_QUADSPI_10 : constant GPIO_Alternate_Function := 10; GPIO_AF_DFSDM1_10 : constant GPIO_Alternate_Function := 10; GPIO_AF_OTG1_FS_10 : constant GPIO_Alternate_Function := 10; GPIO_AF_OTG_HS_10 : constant GPIO_Alternate_Function := 10; GPIO_AF_LTDC_10 : constant GPIO_Alternate_Function := 10; GPIO_AF_I2C4_11 : constant GPIO_Alternate_Function := 11; GPIO_AF_CAN3_11 : constant GPIO_Alternate_Function := 11; GPIO_AF_SDMMC2_11 : constant GPIO_Alternate_Function := 11; GPIO_AF_ETH_11 : constant GPIO_Alternate_Function := 11; GPIO_AF_UART7_12 : constant GPIO_Alternate_Function := 12; GPIO_AF_FMC_12 : constant GPIO_Alternate_Function := 12; GPIO_AF_SDIO_12 : constant GPIO_Alternate_Function := 12; GPIO_AF_MDIOS_12 : constant GPIO_Alternate_Function := 12; GPIO_AF_OTG2_FS_12 : constant GPIO_Alternate_Function := 12; GPIO_AF_DCMI_13 : constant GPIO_Alternate_Function := 13; GPIO_AF_DSI_13 : constant GPIO_Alternate_Function := 13; GPIO_AF_LTDC_13 : constant GPIO_Alternate_Function := 13; GPIO_AF_LTDC_14 : constant GPIO_Alternate_Function := 14; GPIO_AF_EVENTOUT_15 : constant GPIO_Alternate_Function := 15; end STM32.Device;
gerr135/ada_composition
Ada
3,195
adb
-- -- Main routines testing/illustrating the mixins. -- -- 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. -- with Ada.Text_IO; use Ada.Text_IO; with base_iface; use base_iface; with base_type; use base_type; with generic_mixin; with generic_mixin_compositor; with oop_mixin_compositor; procedure run_mixins is begin Put_Line("Starting methods mixin demo,"); Put_Line("generic_mixin"); declare -- this adds the methods but the "direct inheritance" is not as visually evident -- that can be shown via public/private parts as shown in .. package P_base1 is new generic_mixin(Base=>The_Type); type Mixin is new P_base1.Derived with null record; -- type Stub is tagged null record; package P_stub is new generic_mixin(Base=>Stub); type Extension is new P_stub.Derived with null record; -- M : Mixin; E : Extension; begin Put_Line(" direct declaration:"); Put_Line(" mixin:"); M.method; M.simple; M.compound; M.redispatching; -- Put_Line(" extension:"); E.simple; E.compound; E.redispatching; end; declare -- this uses the compositor, hiding generic instantiation but exposing -- (logic of) type inheritance (see the corresponding module). use generic_mixin_compositor; M : Mixin; E : Extension; MC : Mixin_Child; begin Put_Line(" compositor:"); Put_Line(" extension:"); E.simple; E.compound; E.redispatching; -- Put_Line(" mixin:"); M.method; M.simple; M.compound; M.redispatching; M.class_wide; -- Put_Line(" Mixin_Child:"); MC.method; MC.simple; MC.compound; -- this should output gm:simple MC.redispatching; -- this should output MC:simple MC.class_wide; end; -- Put_Line("non-generic (OOP) mixin"); declare -- Only one version is provided in this case. -- Explicit declaration directly here would be impractical and messy. -- The composition is much more clearly illustrated by keeping all the relevant code -- in the separate (compositor) module. use oop_mixin_compositor; M : Mixin; E : Extension; MC : Mixin_Child; begin Put_Line(" compositor (only):"); Put_Line(" extension:"); E.simple; E.compound; E.redispatching; -- Put_Line(" mixin:"); M.method; M.simple; M.compound; M.redispatching; M.class_wide; -- Put_Line(" Mixin_Child:"); MC.method; MC.simple; MC.compound; -- this should output gm:simple MC.redispatching; -- this outputs gm:simple MC.class_wide; -- this outputs MC:simple end; end run_mixins;
Fabien-Chouteau/GESTE
Ada
243,915
ads
package GESTE_Fonts.FreeSansOblique24pt7b is Font : constant Bitmap_Font_Ref; private FreeSansOblique24pt7bBitmaps : aliased constant Font_Bitmap := ( 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C7#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E1#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C7#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E1#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#70#, 16#00#, 16#00#, 16#00#, 16#03#, 16#83#, 16#80#, 16#00#, 16#00#, 16#00#, 16#18#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#78#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#03#, 16#81#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#78#, 16#00#, 16#00#, 16#00#, 16#07#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#78#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#0E#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#38#, 16#00#, 16#00#, 16#00#, 16#07#, 16#83#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#38#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#70#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#70#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#1E#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#78#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#70#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#03#, 16#81#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#78#, 16#00#, 16#00#, 16#00#, 16#07#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#07#, 16#E7#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#30#, 16#F8#, 16#00#, 16#00#, 16#07#, 16#C3#, 16#83#, 16#C0#, 16#00#, 16#00#, 16#3C#, 16#1C#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#E0#, 16#F0#, 16#00#, 16#00#, 16#1E#, 16#06#, 16#07#, 16#80#, 16#00#, 16#00#, 16#F0#, 16#70#, 16#00#, 16#00#, 16#00#, 16#07#, 16#83#, 16#80#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#71#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#03#, 16#87#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#F8#, 16#00#, 16#00#, 16#1C#, 16#0E#, 16#07#, 16#80#, 16#00#, 16#01#, 16#E0#, 16#70#, 16#3C#, 16#00#, 16#00#, 16#0F#, 16#03#, 16#81#, 16#E0#, 16#00#, 16#00#, 16#78#, 16#1C#, 16#0F#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#C0#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#0E#, 16#07#, 16#80#, 16#00#, 16#00#, 16#7C#, 16#70#, 16#F8#, 16#00#, 16#00#, 16#03#, 16#F3#, 16#9F#, 16#80#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#7F#, 16#C0#, 16#00#, 16#E0#, 16#00#, 16#07#, 16#FF#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#78#, 16#7C#, 16#00#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#E0#, 16#0F#, 16#00#, 16#00#, 16#78#, 16#07#, 16#80#, 16#70#, 16#00#, 16#03#, 16#80#, 16#3C#, 16#07#, 16#00#, 16#00#, 16#1C#, 16#01#, 16#E0#, 16#70#, 16#00#, 16#01#, 16#E0#, 16#0E#, 16#07#, 16#80#, 16#00#, 16#0F#, 16#00#, 16#70#, 16#38#, 16#00#, 16#00#, 16#78#, 16#07#, 16#83#, 16#80#, 16#00#, 16#01#, 16#C0#, 16#78#, 16#38#, 16#00#, 16#00#, 16#0F#, 16#87#, 16#83#, 16#C0#, 16#00#, 16#00#, 16#7F#, 16#F8#, 16#1C#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#81#, 16#C0#, 16#00#, 16#00#, 16#03#, 16#F0#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#3F#, 16#E0#, 16#00#, 16#00#, 16#0E#, 16#07#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#F0#, 16#7C#, 16#3C#, 16#00#, 16#00#, 16#07#, 16#07#, 16#80#, 16#F0#, 16#00#, 16#00#, 16#70#, 16#38#, 16#03#, 16#80#, 16#00#, 16#07#, 16#03#, 16#C0#, 16#1C#, 16#00#, 16#00#, 16#78#, 16#1C#, 16#00#, 16#E0#, 16#00#, 16#03#, 16#80#, 16#E0#, 16#07#, 16#00#, 16#00#, 16#38#, 16#07#, 16#00#, 16#70#, 16#00#, 16#03#, 16#80#, 16#38#, 16#03#, 16#80#, 16#00#, 16#38#, 16#01#, 16#E0#, 16#38#, 16#00#, 16#01#, 16#C0#, 16#0F#, 16#87#, 16#C0#, 16#00#, 16#1C#, 16#00#, 16#3F#, 16#FC#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#FF#, 16#80#, 16#00#, 16#1C#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#78#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#07#, 16#81#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#78#, 16#07#, 16#80#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#07#, 16#81#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F1#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#7C#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#E3#, 16#E0#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#0F#, 16#87#, 16#80#, 16#00#, 16#03#, 16#C0#, 16#3C#, 16#78#, 16#00#, 16#00#, 16#3C#, 16#01#, 16#F3#, 16#C0#, 16#00#, 16#01#, 16#E0#, 16#07#, 16#FC#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#3F#, 16#C0#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#80#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#03#, 16#FC#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#3F#, 16#E0#, 16#00#, 16#00#, 16#7F#, 16#07#, 16#EF#, 16#80#, 16#00#, 16#01#, 16#FF#, 16#FE#, 16#7C#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#C1#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#FC#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#8E#, 16#30#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#77#, 16#80#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#03#, 16#DC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C3#, 16#80#, 16#00#, 16#00#, 16#00#, 16#04#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#87#, 16#E0#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#78#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#07#, 16#80#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#07#, 16#80#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#78#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#07#, 16#80#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#07#, 16#80#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#EF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#78#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E7#, 16#80#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F1#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F7#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#03#, 16#F8#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#83#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E1#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#3F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#F3#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#07#, 16#BF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#C0#, 16#FC#, 16#00#, 16#00#, 16#03#, 16#F8#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#1F#, 16#80#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#83#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#78#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#0F#, 16#C0#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#0F#, 16#C0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#78#, 16#00#, 16#00#, 16#07#, 16#80#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#1F#, 16#80#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#0F#, 16#C0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#1F#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#E3#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#01#, 16#FF#, 16#80#, 16#7F#, 16#E0#, 16#00#, 16#3F#, 16#C0#, 16#00#, 16#7F#, 16#00#, 16#03#, 16#F8#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#30#, 16#03#, 16#E0#, 16#03#, 16#F0#, 16#00#, 16#80#, 16#3E#, 16#00#, 16#7F#, 16#C7#, 16#84#, 16#03#, 16#E0#, 16#0F#, 16#FF#, 16#78#, 16#20#, 16#1E#, 16#00#, 16#F8#, 16#3B#, 16#C0#, 16#01#, 16#F0#, 16#0F#, 16#80#, 16#FC#, 16#00#, 16#0F#, 16#00#, 16#F0#, 16#07#, 16#E0#, 16#00#, 16#F0#, 16#0F#, 16#00#, 16#3E#, 16#00#, 16#07#, 16#80#, 16#F8#, 16#01#, 16#F0#, 16#00#, 16#78#, 16#07#, 16#80#, 16#0F#, 16#00#, 16#83#, 16#C0#, 16#78#, 16#00#, 16#F8#, 16#04#, 16#1E#, 16#03#, 16#C0#, 16#07#, 16#80#, 16#21#, 16#E0#, 16#3E#, 16#00#, 16#7C#, 16#03#, 16#0F#, 16#01#, 16#E0#, 16#03#, 16#C0#, 16#18#, 16#78#, 16#0F#, 16#00#, 16#3E#, 16#01#, 16#C3#, 16#C0#, 16#78#, 16#01#, 16#E0#, 16#1E#, 16#1E#, 16#03#, 16#C0#, 16#1F#, 16#01#, 16#F0#, 16#F0#, 16#1E#, 16#01#, 16#F0#, 16#1F#, 16#07#, 16#80#, 16#F8#, 16#1F#, 16#81#, 16#F0#, 16#3C#, 16#07#, 16#E1#, 16#FE#, 16#3F#, 16#01#, 16#E0#, 16#1F#, 16#FD#, 16#FF#, 16#F0#, 16#0F#, 16#80#, 16#7F#, 16#8F#, 16#FE#, 16#00#, 16#3C#, 16#01#, 16#F8#, 16#3F#, 16#C0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F8#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#DF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#78#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E3#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#81#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#78#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#78#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#07#, 16#80#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#78#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#78#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#07#, 16#80#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#07#, 16#80#, 16#01#, 16#F8#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#7F#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#03#, 16#F8#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#3F#, 16#C0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#1F#, 16#E0#, 16#00#, 16#01#, 16#FC#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#78#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#03#, 16#FF#, 16#F0#, 16#00#, 16#3C#, 16#00#, 16#1F#, 16#FF#, 16#80#, 16#03#, 16#E0#, 16#01#, 16#FF#, 16#FC#, 16#00#, 16#1F#, 16#00#, 16#0F#, 16#FF#, 16#E0#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#07#, 16#80#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#7E#, 16#00#, 16#03#, 16#FC#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#3F#, 16#C0#, 16#00#, 16#07#, 16#F8#, 16#0F#, 16#FE#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FC#, 16#F0#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#C3#, 16#80#, 16#00#, 16#01#, 16#FF#, 16#F8#, 16#18#, 16#00#, 16#00#, 16#01#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#78#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#07#, 16#8F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#01#, 16#EF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FB#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#03#, 16#F0#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#01#, 16#F8#, 16#00#, 16#00#, 16#FE#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#07#, 16#F0#, 16#00#, 16#FF#, 16#00#, 16#00#, 16#7F#, 16#80#, 16#07#, 16#F8#, 16#00#, 16#03#, 16#F8#, 16#00#, 16#3F#, 16#C0#, 16#00#, 16#3F#, 16#C0#, 16#01#, 16#FE#, 16#00#, 16#03#, 16#DE#, 16#00#, 16#1F#, 16#F0#, 16#00#, 16#1F#, 16#F0#, 16#00#, 16#F7#, 16#80#, 16#01#, 16#EF#, 16#00#, 16#07#, 16#9C#, 16#00#, 16#0F#, 16#78#, 16#00#, 16#3C#, 16#E0#, 16#00#, 16#F3#, 16#C0#, 16#01#, 16#E7#, 16#80#, 16#07#, 16#9E#, 16#00#, 16#1F#, 16#3C#, 16#00#, 16#79#, 16#F0#, 16#00#, 16#F1#, 16#E0#, 16#03#, 16#CF#, 16#00#, 16#07#, 16#8F#, 16#00#, 16#3C#, 16#78#, 16#00#, 16#3C#, 16#78#, 16#03#, 16#C3#, 16#C0#, 16#01#, 16#E3#, 16#C0#, 16#1E#, 16#1E#, 16#00#, 16#1E#, 16#0E#, 16#01#, 16#E1#, 16#F0#, 16#00#, 16#F0#, 16#70#, 16#0F#, 16#0F#, 16#00#, 16#07#, 16#83#, 16#C0#, 16#F0#, 16#78#, 16#00#, 16#3C#, 16#1E#, 16#07#, 16#83#, 16#C0#, 16#03#, 16#E0#, 16#F0#, 16#78#, 16#3E#, 16#00#, 16#1E#, 16#07#, 16#83#, 16#C1#, 16#E0#, 16#00#, 16#F0#, 16#3C#, 16#3C#, 16#0F#, 16#00#, 16#07#, 16#81#, 16#E3#, 16#C0#, 16#78#, 16#00#, 16#3C#, 16#07#, 16#1E#, 16#03#, 16#C0#, 16#03#, 16#E0#, 16#3D#, 16#E0#, 16#3E#, 16#00#, 16#1E#, 16#01#, 16#EF#, 16#01#, 16#E0#, 16#00#, 16#F0#, 16#0F#, 16#F0#, 16#0F#, 16#00#, 16#07#, 16#80#, 16#7F#, 16#80#, 16#78#, 16#00#, 16#3C#, 16#03#, 16#F8#, 16#03#, 16#C0#, 16#03#, 16#C0#, 16#1F#, 16#C0#, 16#3E#, 16#00#, 16#1E#, 16#00#, 16#FC#, 16#01#, 16#E0#, 16#00#, 16#F0#, 16#03#, 16#C0#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#78#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#FE#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#F8#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#3F#, 16#C0#, 16#00#, 16#F8#, 16#00#, 16#01#, 16#FF#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1F#, 16#F8#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F3#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#9F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#3C#, 16#78#, 16#00#, 16#F8#, 16#00#, 16#01#, 16#E3#, 16#E0#, 16#07#, 16#80#, 16#00#, 16#1F#, 16#0F#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#7C#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#83#, 16#E0#, 16#0F#, 16#00#, 16#00#, 16#3C#, 16#0F#, 16#00#, 16#F8#, 16#00#, 16#01#, 16#E0#, 16#7C#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#01#, 16#E0#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#0F#, 16#81#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#7C#, 16#1F#, 16#00#, 16#00#, 16#3C#, 16#01#, 16#F0#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#0F#, 16#87#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#3C#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#01#, 16#F1#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#07#, 16#9F#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3E#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#01#, 16#F7#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#07#, 16#FC#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#3F#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#FF#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#07#, 16#F0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#E0#, 16#3F#, 16#C0#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#7F#, 16#00#, 16#00#, 16#1F#, 16#80#, 16#01#, 16#F8#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#07#, 16#E0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#78#, 16#00#, 16#78#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#07#, 16#80#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#7F#, 16#00#, 16#00#, 16#0F#, 16#F8#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#07#, 16#80#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#07#, 16#80#, 16#01#, 16#F8#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#E0#, 16#3F#, 16#C0#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#7F#, 16#00#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#F8#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#07#, 16#E0#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#78#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#78#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#0F#, 16#80#, 16#01#, 16#03#, 16#C0#, 16#00#, 16#7C#, 16#00#, 16#1C#, 16#3E#, 16#00#, 16#03#, 16#E0#, 16#01#, 16#F3#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#07#, 16#FE#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#1F#, 16#E0#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#07#, 16#F8#, 16#1F#, 16#F0#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#F8#, 16#FC#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#E0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#7F#, 16#01#, 16#FC#, 16#00#, 16#00#, 16#07#, 16#E0#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#78#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#3F#, 16#80#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#0F#, 16#FF#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#07#, 16#80#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#3F#, 16#C0#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#78#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#78#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#78#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#78#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C7#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F3#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#9E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3D#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#EF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#03#, 16#E0#, 16#01#, 16#FC#, 16#00#, 16#20#, 16#1F#, 16#00#, 16#0F#, 16#E0#, 16#01#, 16#00#, 16#F8#, 16#00#, 16#FF#, 16#00#, 16#18#, 16#07#, 16#C0#, 16#07#, 16#F8#, 16#00#, 16#C0#, 16#3E#, 16#00#, 16#7B#, 16#C0#, 16#0E#, 16#01#, 16#F0#, 16#03#, 16#DE#, 16#00#, 16#70#, 16#0F#, 16#80#, 16#3C#, 16#F0#, 16#07#, 16#80#, 16#7C#, 16#01#, 16#E7#, 16#80#, 16#3C#, 16#01#, 16#E0#, 16#1E#, 16#3C#, 16#01#, 16#E0#, 16#0F#, 16#00#, 16#F1#, 16#E0#, 16#1F#, 16#00#, 16#78#, 16#0F#, 16#0F#, 16#00#, 16#F0#, 16#03#, 16#C0#, 16#78#, 16#38#, 16#0F#, 16#80#, 16#1E#, 16#07#, 16#81#, 16#E0#, 16#78#, 16#00#, 16#F0#, 16#3C#, 16#0F#, 16#07#, 16#C0#, 16#07#, 16#83#, 16#C0#, 16#78#, 16#3C#, 16#00#, 16#3C#, 16#1E#, 16#03#, 16#C3#, 16#E0#, 16#01#, 16#E1#, 16#E0#, 16#1E#, 16#1E#, 16#00#, 16#0F#, 16#0F#, 16#00#, 16#F0#, 16#F0#, 16#00#, 16#78#, 16#F0#, 16#07#, 16#8F#, 16#80#, 16#03#, 16#C7#, 16#80#, 16#3C#, 16#78#, 16#00#, 16#1E#, 16#78#, 16#01#, 16#E7#, 16#C0#, 16#00#, 16#F3#, 16#C0#, 16#0F#, 16#3C#, 16#00#, 16#07#, 16#BC#, 16#00#, 16#7B#, 16#E0#, 16#00#, 16#3D#, 16#E0#, 16#03#, 16#DE#, 16#00#, 16#01#, 16#FE#, 16#00#, 16#1F#, 16#F0#, 16#00#, 16#0F#, 16#F0#, 16#00#, 16#FF#, 16#00#, 16#00#, 16#7F#, 16#80#, 16#03#, 16#F8#, 16#00#, 16#03#, 16#F8#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#07#, 16#E0#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#81#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#8F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FB#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#9F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C3#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#07#, 16#E0#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#07#, 16#E0#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C3#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#79#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#0F#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#B8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#39#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#CE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#70#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C3#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#70#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#70#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#78#, 16#07#, 16#80#, 16#00#, 16#00#, 16#03#, 16#80#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#0F#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#81#, 16#F8#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#1F#, 16#FE#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#FC#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#78#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#F7#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#7F#, 16#F0#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#1F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#7B#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#3D#, 16#E0#, 16#FC#, 16#00#, 16#00#, 16#01#, 16#FC#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#07#, 16#80#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#83#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#BF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#3D#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#C7#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#81#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#07#, 16#E0#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#C7#, 16#80#, 16#00#, 16#00#, 16#1F#, 16#FE#, 16#78#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FB#, 16#C0#, 16#00#, 16#00#, 16#1F#, 16#83#, 16#FE#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#07#, 16#F8#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#DE#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#F8#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C1#, 16#F8#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#07#, 16#80#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#C7#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#78#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FB#, 16#C0#, 16#00#, 16#00#, 16#1F#, 16#83#, 16#FE#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#0F#, 16#F8#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FB#, 16#C0#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#BC#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#F9#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#78#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#1F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#7B#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#E1#, 16#F8#, 16#00#, 16#00#, 16#01#, 16#FC#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#78#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#78#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C7#, 16#80#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#01#, 16#EF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#78#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F3#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#78#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#78#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#78#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#03#, 16#E0#, 16#00#, 16#0F#, 16#3F#, 16#E0#, 16#7F#, 16#C0#, 16#00#, 16#73#, 16#FF#, 16#8F#, 16#FF#, 16#00#, 16#07#, 16#BF#, 16#FE#, 16#FF#, 16#F8#, 16#00#, 16#3F#, 16#C3#, 16#FF#, 16#07#, 16#C0#, 16#01#, 16#F8#, 16#0F#, 16#F0#, 16#1F#, 16#00#, 16#0F#, 16#80#, 16#3F#, 16#00#, 16#F8#, 16#00#, 16#78#, 16#01#, 16#F0#, 16#07#, 16#80#, 16#07#, 16#C0#, 16#0F#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#78#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#03#, 16#80#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#3C#, 16#00#, 16#78#, 16#00#, 16#78#, 16#01#, 16#E0#, 16#07#, 16#80#, 16#07#, 16#80#, 16#0F#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#78#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#07#, 16#80#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#3C#, 16#00#, 16#78#, 16#00#, 16#78#, 16#01#, 16#E0#, 16#07#, 16#80#, 16#07#, 16#80#, 16#0F#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#78#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#07#, 16#80#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#3C#, 16#00#, 16#78#, 16#00#, 16#78#, 16#01#, 16#E0#, 16#07#, 16#80#, 16#07#, 16#80#, 16#0F#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#70#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#07#, 16#80#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#3F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#73#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#07#, 16#BF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#E1#, 16#F8#, 16#00#, 16#00#, 16#01#, 16#FC#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C1#, 16#F8#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#78#, 16#00#, 16#00#, 16#07#, 16#80#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#07#, 16#80#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#07#, 16#80#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#3F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#7B#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#07#, 16#BF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#E0#, 16#FC#, 16#00#, 16#00#, 16#01#, 16#FC#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#07#, 16#80#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#83#, 16#F8#, 16#00#, 16#00#, 16#07#, 16#BF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#3D#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#01#, 16#E7#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#C7#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#38#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FB#, 16#C0#, 16#00#, 16#00#, 16#1F#, 16#83#, 16#FE#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#78#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#78#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#07#, 16#F8#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FB#, 16#C0#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#9E#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#F9#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#73#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#07#, 16#BF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#78#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#BC#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#F1#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#78#, 16#00#, 16#78#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#78#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#78#, 16#00#, 16#00#, 16#00#, 16#07#, 16#87#, 16#80#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E3#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#79#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#DE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#F8#, 16#03#, 16#C0#, 16#01#, 16#E0#, 16#0F#, 16#C0#, 16#1E#, 16#00#, 16#0F#, 16#00#, 16#7E#, 16#01#, 16#F0#, 16#00#, 16#78#, 16#07#, 16#F0#, 16#0F#, 16#00#, 16#03#, 16#C0#, 16#3F#, 16#80#, 16#F8#, 16#00#, 16#1E#, 16#03#, 16#FC#, 16#07#, 16#80#, 16#00#, 16#F0#, 16#1F#, 16#E0#, 16#7C#, 16#00#, 16#07#, 16#81#, 16#EF#, 16#03#, 16#C0#, 16#00#, 16#3C#, 16#0F#, 16#78#, 16#3E#, 16#00#, 16#01#, 16#E0#, 16#F3#, 16#C1#, 16#E0#, 16#00#, 16#07#, 16#07#, 16#9E#, 16#1F#, 16#00#, 16#00#, 16#3C#, 16#38#, 16#F0#, 16#F0#, 16#00#, 16#01#, 16#E3#, 16#C3#, 16#87#, 16#80#, 16#00#, 16#0F#, 16#1C#, 16#1C#, 16#78#, 16#00#, 16#00#, 16#79#, 16#E0#, 16#E3#, 16#C0#, 16#00#, 16#03#, 16#CF#, 16#07#, 16#3C#, 16#00#, 16#00#, 16#1E#, 16#F0#, 16#39#, 16#E0#, 16#00#, 16#00#, 16#F7#, 16#81#, 16#DE#, 16#00#, 16#00#, 16#07#, 16#F8#, 16#0E#, 16#F0#, 16#00#, 16#00#, 16#3F#, 16#C0#, 16#7F#, 16#00#, 16#00#, 16#01#, 16#FC#, 16#03#, 16#F8#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#1F#, 16#80#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#78#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C1#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#79#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#EF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#BC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F9#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#07#, 16#87#, 16#80#, 16#00#, 16#00#, 16#00#, 16#78#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#78#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#07#, 16#80#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#78#, 16#07#, 16#C0#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#07#, 16#81#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#78#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E7#, 16#80#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7B#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#03#, 16#DE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#E0#, 16#1C#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#80#, 16#E0#, 16#00#, 16#00#, 16#1E#, 16#3F#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#7F#, 16#E0#, 16#00#, 16#00#, 16#06#, 16#01#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#); Font_D : aliased constant Bitmap_Font := ( Bytes_Per_Glyph => 315, Glyph_Width => 45, Glyph_Height => 56, Data => FreeSansOblique24pt7bBitmaps'Access); Font : constant Bitmap_Font_Ref := Font_D'Access; end GESTE_Fonts.FreeSansOblique24pt7b;
zhmu/ananas
Ada
657
adb
-- { dg-do compile } procedure Fixedpnt8 is Ct_A : constant := 0.000_000_100; Ct_B : constant := 0.000_000_025; Ct_C : constant := 1_000; type Number_Type is range 0 .. Ct_C; subtype Index_Type is Number_Type range 1 .. Number_Type'Last; type Kind_Enumerated_Type is (A1, A2); Kind : Kind_Enumerated_Type := A1; V : Duration := 10.0; Last : constant Index_Type := Index_Type (V / (case Kind is -- { dg-warning "universal_fixed expression interpreted as type \"Standard.Duration\"" } when A1 => Ct_B, when A2 => Ct_A)); begin null; end Fixedpnt8;
zhmu/ananas
Ada
85
adb
package body Lto5_Pkg is procedure d (a : t) is begin null; end; end;
veyselharun/ABench2020
Ada
1,597
adb
-- -- ABench2020 Benchmark Suite -- -- Linear Search Program -- -- Licensed under the MIT License. See LICENSE file in the ABench root -- directory for license information. -- -- Uncomment the line below to print the result. -- with Ada.Text_IO; use Ada.Text_IO; procedure Linear_Search is type Vector is array (Natural range<>) of Integer; procedure Search (Search_Array : Vector; Search_Value : Integer) is Count : Integer := 0; Index : Integer := 0; begin for I in 1 .. Search_Array'Last loop if Search_Array (I) = Search_Value then Count := Count + 1; end if; end loop; if Count = 0 then return; end if; declare Index_Array : Vector (1 .. Count); begin for I in 1 .. Search_Array'Last loop if Search_Array (I) = Search_Value then Index := Index + 1; Index_Array (Index) := I; end if; end loop; -- Uncomment the line below to print the result. -- for I in 1 .. Index_Array'Last loop -- Put (Integer'Image (Index_Array (I))); -- end loop; end; end; Search_Value : Integer; Search_Array : Vector := (3, 4, 7, 8, 9, 10, 11, 24, 25, 55, 56, 78, 90, 98, 120, 134, 152, 155, 165, 167, 168, 198, 250, 287, 298, 300, 310, 333, 338, 350, 399, 442, 475, 567); begin Search_Value := 250; Search (Search_Array, Search_Value); end;
stcarrez/ada-enet
Ada
7,441
adb
----------------------------------------------------------------------- -- demos -- Utility package for the demos -- Copyright (C) 2016, 2017 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Bitmapped_Drawing; with Bitmap_Color_Conversion; with STM32.SDRAM; with STM32.RNG.Interrupts; with Net.Utils; with Receiver; package body Demos is function Scale (Point : in HAL.Bitmap.Point) return HAL.Bitmap.Point; function Scale (Point : in HAL.Bitmap.Point) return HAL.Bitmap.Point is pragma Warnings (Off); begin if STM32.Board.LCD_Natural_Width > 480 then return (Point.X * 800 / 480, Point.Y * 480 / 272); else return Point; end if; end Scale; -- ------------------------------ -- Write a message on the display. -- ------------------------------ procedure Put (X : in Natural; Y : in Natural; Msg : in String) is begin Bitmapped_Drawing.Draw_String (Buffer => STM32.Board.Display.Hidden_Buffer (1).all, Start => Scale ((X, Y)), Msg => Msg, Font => Current_Font, Foreground => Foreground, Background => Background); end Put; -- ------------------------------ -- Write the 64-bit integer value on the display. -- ------------------------------ procedure Put (X : in Natural; Y : in Natural; Value : in Net.Uint64) is Buffer : constant HAL.Bitmap.Any_Bitmap_Buffer := STM32.Board.Display.Hidden_Buffer (1); FG : constant HAL.UInt32 := Bitmap_Color_Conversion.Bitmap_Color_To_Word (Buffer.Color_Mode, Foreground); BG : constant HAL.UInt32 := Bitmap_Color_Conversion.Bitmap_Color_To_Word (Buffer.Color_Mode, Background); V : constant String := Net.Uint64'Image (Value); Pos : HAL.Bitmap.Point := (X + 100, Y); D : Natural := 1; begin for I in reverse V'Range loop Bitmapped_Drawing.Draw_Char (Buffer => Buffer.all, Start => Scale (Pos), Char => V (I), Font => Current_Font, Foreground => FG, Background => BG); Pos.X := Pos.X - 8; D := D + 1; if D = 4 then D := 1; Pos.X := Pos.X - 4; end if; end loop; end Put; -- ------------------------------ -- Refresh the ifnet statistics on the display. -- ------------------------------ procedure Refresh_Ifnet_Stats is use type Net.DHCP.State_Type; use type Receiver.Us_Time; State : constant Net.DHCP.State_Type := Dhcp.Get_State; Min_Time : constant Receiver.Us_Time := Receiver.Min_Receive_Time; Max_Time : constant Receiver.Us_Time := Receiver.Max_Receive_Time; Avg_Time : constant Receiver.Us_Time := Receiver.Avg_Receive_Time; begin case State is when Net.DHCP.STATE_BOUND | Net.DHCP.STATE_DAD | Net.DHCP.STATE_RENEWING | Net.DHCP.STATE_REBINDING => if State = Net.DHCP.STATE_REBINDING then Foreground := HAL.Bitmap.Red; elsif State /= Net.DHCP.STATE_BOUND then Foreground := HAL.Bitmap.Blue; end if; Put (80, 30, Net.Utils.To_String (Ifnet.Ip)); Put (80, 40, Net.Utils.To_String (Ifnet.Gateway)); Put (80, 50, Net.Utils.To_String (Ifnet.Dns)); when Net.DHCP.STATE_SELECTING => Foreground := HAL.Bitmap.Blue; Put (80, 30, "Selecting"); when Net.DHCP.STATE_REQUESTING => Foreground := HAL.Bitmap.Blue; Put (80, 30, "Requesting"); when others => Foreground := HAL.Bitmap.Blue; Put (80, 30, "Initialize "); Put (80, 40, " "); Put (80, 50, " "); end case; Foreground := HAL.Bitmap.White; Put (250, 30, Net.Uint64 (Ifnet.Rx_Stats.Packets)); Put (350, 30, Ifnet.Rx_Stats.Bytes); Put (250, 40, Net.Uint64 (Ifnet.Tx_Stats.Packets)); Put (350, 40, Ifnet.Tx_Stats.Bytes); if Min_Time < 1_000_000 and Min_Time > 0 then Put (250, 50, Net.Uint64 (Min_Time)); end if; if Avg_Time < 1_000_000 and Avg_Time > 0 then Put (300, 50, Net.Uint64 (Avg_Time)); end if; if Max_Time < 1_000_000 and Max_Time > 0 then Put (350, 50, Net.Uint64 (Max_Time)); end if; end Refresh_Ifnet_Stats; -- ------------------------------ -- Initialize the board and the interface. -- ------------------------------ procedure Initialize (Title : in String) is begin STM32.RNG.Interrupts.Initialize_RNG; STM32.Board.Display.Initialize; STM32.Board.Display.Initialize_Layer (1, HAL.Bitmap.ARGB_1555); -- Static IP interface, default netmask and no gateway. -- Ifnet.Ip := (192, 168, 1, 2); -- Ifnet.Gateway := (192, 168, 1, 240); -- Ifnet.Dns := (192, 168, 1, 240); -- STMicroelectronics OUI = 00 81 E1 Ifnet.Mac := (0, 16#81#, 16#E1#, 5, 5, 1); -- Setup some receive buffers and initialize the Ethernet driver. Net.Buffers.Add_Region (STM32.SDRAM.Reserve (Amount => HAL.UInt32 (NET_BUFFER_SIZE)), NET_BUFFER_SIZE); Ifnet.Initialize; Receiver.Start; -- Initialize the DHCP client. Dhcp.Initialize (Ifnet'Access); for I in 1 .. 2 loop Current_Font := BMP_Fonts.Font16x24; Put (0, 0, Title); Current_Font := Default_Font; Put (5, 30, "IP"); Put (4, 40, "Gateway"); Put (4, 50, "DNS"); Put (250, 30, "Rx"); Put (250, 40, "Tx"); Put (250, 50, "Rec time"); Put (302, 14, "Packets"); Put (418, 14, "Bytes"); -- Put (0, 70, "Host"); -- Put (326, 70, "Send"); -- Put (402, 70, "Receive"); Header; STM32.Board.Display.Hidden_Buffer (1).Set_Source (HAL.Bitmap.Blue); STM32.Board.Display.Hidden_Buffer (1).Draw_Horizontal_Line (Pt => (X => 0, Y => 84), Width => STM32.Board.LCD_Natural_Width); STM32.Board.Display.Update_Layer (1); end loop; end Initialize; end Demos;
PThierry/ewok-kernel
Ada
1,428
ads
-- -- Copyright 2018 The wookey project team <[email protected]> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- package soc.rcc.default with spark_mode => off is -- -- Those constant suit to disco407, disco429, disco430 and wookey -- enable_HSE : constant boolean := false; enable_PLL : constant boolean := true; PLL_M : constant := 16; PLL_N : constant := 336; PLL_P : constant t_PLLP := PLLP2; PLL_Q : constant := 7; AHB_DIV : constant t_HPRE := HPRE_NODIV; APB1_DIV : constant t_PPRE := PPRE_DIV4; APB2_DIV : constant t_PPRE := PPRE_DIV2; CLOCK_APB1 : constant := 42_000_000; -- Hz CLOCK_APB2 : constant := 84_000_000; -- Hz CORE_FREQUENCY : constant := 168_000_000; -- Hz end soc.rcc.default;
mirror/ncurses
Ada
3,667
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Forms.Field_Types.Alpha -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright 2020 Thomas E. Dickey -- -- Copyright 1999-2011,2014 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: -- $Revision: 1.14 $ -- $Date: 2020/02/02 23:34:34 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux; package body Terminal_Interface.Curses.Forms.Field_Types.Alpha is procedure Set_Field_Type (Fld : Field; Typ : Alpha_Field) is function Set_Fld_Type (F : Field := Fld; Arg1 : C_Int) return Eti_Error; pragma Import (C, Set_Fld_Type, "set_field_type_alpha"); begin Eti_Exception (Set_Fld_Type (Arg1 => C_Int (Typ.Minimum_Field_Width))); Wrap_Builtin (Fld, Typ); end Set_Field_Type; end Terminal_Interface.Curses.Forms.Field_Types.Alpha;
AdaCore/libadalang
Ada
64,787
adb
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . E X P E C T . T T Y . R E M O T E -- -- -- -- S p e c -- -- -- -- Copyright (C) 2006-2017, 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, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- GNAT is maintained by AdaCore (http://www.adacore.com). -- -- -- ------------------------------------------------------------------------------ with Ada.Exceptions; use Ada.Exceptions; with Ada.Unchecked_Conversion; with Ada.Strings.Fixed; use Ada.Strings.Fixed; with Password_Manager; use Password_Manager; with String_Utils; use String_Utils; with GNATCOLL.Arg_Lists; use GNATCOLL.Arg_Lists; with GNATCOLL.Traces; use GNATCOLL.Traces; with GNATCOLL.Utils; use GNATCOLL.Utils; with User_Interface_Tools; use User_Interface_Tools; with Gexpect.Db; use Gexpect.Db; package body GNAT.Expect.TTY.Remote is Me : constant Trace_Handle := Create ("GNAT.Expect.TTY.Remote"); Finalized : Boolean := False; Remote_Process_Died : exception; type Compiled_Regexp_Array_Access is access Compiled_Regexp_Array; Test_Echo_Cmd : constant String := "echo foo"; Echoing_Regexps : constant Compiled_Regexp_Array := (1 => new Pattern_Matcher' (Compile ("^echo foo", Multiple_Lines or Single_Line)), 2 => new Pattern_Matcher' (Compile ("^foo", Multiple_Lines or Single_Line))); procedure Simple_Free is new Ada.Unchecked_Deallocation (String_List, String_List_Access); procedure Internal_Sync_Execute (Host : String; Args : GNAT.OS_Lib.Argument_List; Execution_Directory : Filesystem_String; Get_Output : Boolean; Out_Value : out GNAT.Strings.String_Access; Status : out Integer; Success : out Boolean); -- Execute the command synchronously. procedure Filter_Out (Descriptor : Process_Descriptor'Class; Str : String; User_Data : System.Address := System.Null_Address); -- Used to filter the shell output (removes shell commands) procedure Internal_Handle_Exceptions (Desc : in out Remote_Process_Descriptor); -- Handle exceptions raised by gnat.expect or gnat.expect.tty procedure Get_Or_Init_Session (Descriptor : in out Remote_Process_Descriptor; Err_To_Out : Boolean := True; On_New_Connection : access procedure (Target_Name : String) := null); -- Retrieve a READY session, or initialize a new one. -- Assign it to descriptor upon success -- Raises No_Session_Available is all sessions are BUSY procedure Log (Where : String; What : String); -- Log a debug comment procedure Get_Status (Descriptor : in out Remote_Process_Descriptor); pragma Precondition (Descriptor.Terminated and not Descriptor.Session_Died); -- Retrieve the status code of a terminated descriptor, and set the -- underlying session state to READY. procedure Handle_Pre_Disconnect (Descriptor : Remote_Process_Descriptor; Timeout : in out Integer); procedure Handle_Post_Disconnect (Descriptor : Remote_Process_Descriptor; Result : Expect_Match); -- Handle descriptor termination --------- -- Log -- --------- procedure Log (Where : String; What : String) is function Clean_Up (Str : String) return String; -- On VMS, traces might begin with NUL character. Remove it for display function Clean_Up (Str : String) return String is Out_S : String := Str; begin for J in Str'Range loop if Str (J) = ASCII.NUL then Out_S (J) := '@'; end if; end loop; return Out_S; end Clean_Up; begin if Active (Me) then Trace (Me, "(" & Where & "): '" & Clean_Up (What) & "'"); end if; end Log; ---------------- -- Add_Filter -- ---------------- overriding procedure Add_Filter (Descriptor : in out Remote_Process_Descriptor; Filter : Filter_Function; Filter_On : Filter_Type := Output; User_Data : System.Address := System.Null_Address; After : Boolean := False) is Current : Filter_List := Descriptor.R_Filters; begin if Filter_On /= Output then Add_Filter (TTY_Process_Descriptor (Descriptor), Filter, Filter_On, User_Data, After); elsif After then while Current /= null and then Current.Next /= null loop Current := Current.Next; end loop; if Current = null then Descriptor.R_Filters := new Filter_List_Elem' (Filter => Filter, Filter_On => Filter_On, User_Data => User_Data, Next => null); else Current.Next := new Filter_List_Elem' (Filter => Filter, Filter_On => Filter_On, User_Data => User_Data, Next => null); end if; else Descriptor.R_Filters := new Filter_List_Elem' (Filter => Filter, Filter_On => Filter_On, User_Data => User_Data, Next => Descriptor.R_Filters); end if; end Add_Filter; ------------------- -- Remove_Filter -- ------------------- overriding procedure Remove_Filter (Descriptor : in out Remote_Process_Descriptor; Filter : Filter_Function) is Previous : Filter_List := null; Current : Filter_List := Descriptor.R_Filters; begin Remove_Filter (TTY_Process_Descriptor (Descriptor), Filter); while Current /= null loop if Current.Filter = Filter then if Previous = null then Descriptor.R_Filters := Current.Next; else Previous.Next := Current.Next; end if; end if; Previous := Current; Current := Current.Next; end loop; end Remove_Filter; ------------------ -- Lock_Filters -- ------------------ overriding procedure Lock_Filters (Descriptor : in out Remote_Process_Descriptor) is begin Descriptor.R_Filters_Lock := Descriptor.R_Filters_Lock + 1; end Lock_Filters; -------------------- -- Unlock_Filters -- -------------------- overriding procedure Unlock_Filters (Descriptor : in out Remote_Process_Descriptor) is begin if Descriptor.R_Filters_Lock > 0 then Descriptor.R_Filters_Lock := Descriptor.R_Filters_Lock - 1; end if; end Unlock_Filters; -------------------------------- -- Internal_Handle_Exceptions -- -------------------------------- procedure Internal_Handle_Exceptions (Desc : in out Remote_Process_Descriptor) is Data : TTY_Data_Access; begin if Desc.Machine = null then -- Pd already closed. Do nothing return; end if; Data := TTY_Data_Access (Get_Data (Desc.Machine.all)); -- Exception comming from the shell, not from the remote process -- If Session_Died is set, the session exception has already been -- treated. if not Desc.Terminated and not Desc.Session_Died then if Desc.Machine /= null and then Desc.Session_Nb in Data.Sessions'Range and then Data.Sessions (Desc.Session_Nb).State /= OFF then Data.Sessions (Desc.Session_Nb).State := OFF; Close (Data.Sessions (Desc.Session_Nb).Pd); end if; Desc.Terminated := True; Desc.Session_Died := True; end if; exception when others => -- Pd already closed. Do nothing null; end Internal_Handle_Exceptions; ---------- -- Send -- ---------- overriding procedure Send (Descriptor : in out Remote_Process_Descriptor; Str : String; Add_LF : Boolean := True; Empty_Buffer : Boolean := False) is TTY_Descriptor : TTY_Process_Descriptor renames TTY_Process_Descriptor (Descriptor); begin if Str /= "" then if Active (Me) then Log ("SND", Str); end if; if Descriptor.Machine.Use_Dbg then Descriptor.Machine.Dbg (Str, Input); end if; -- Set this to false in all cases: if we need to remove echo, we -- remove it in all cases (whether the underlying process is running -- or not). Descriptor.Current_Echo_Skipped := False; end if; if Descriptor.Use_Cr_Lf = CRLF and then Add_LF then Send (TTY_Descriptor, Str & ASCII.CR, Add_LF, Empty_Buffer); else Send (TTY_Descriptor, Str, Add_LF, Empty_Buffer); end if; exception when Process_Died => Internal_Handle_Exceptions (Descriptor); raise; end Send; ------------------------- -- Get_Or_Init_Session -- ------------------------- procedure Get_Or_Init_Session (Descriptor : in out Remote_Process_Descriptor; Err_To_Out : Boolean := True; On_New_Connection : access procedure (Target_Name : String) := null) is TTY_Data : constant TTY_Data_Access := TTY_Data_Access (Get_Data (Descriptor.Machine.all)); Session_Nb : Natural := 0; New_Args : String_List_Access; Old_Args : String_List_Access; Regexp_Array : Compiled_Regexp_Array (1 .. 3); Verify_Cr_Lf : Boolean := False; First_Call : Boolean := False; function Process_Arg_List (L : String_List) return String_List; -- process the list of arguments, replacing tags with actual values procedure Wait_For_Prompt (Intermediate : Boolean := False); -- Wait for prompt on target procedure My_Send (Descriptor : in out Process_Descriptor'Class; Server : Machine_Access; Str : String; Use_Cr_Lf : Boolean; Add_LF : Boolean := True; Empty_Buffer : Boolean := False; Password_Mode : Boolean := False); -- Special send procedure that handle sending of CR characters ---------------------- -- Process_Arg_List -- ---------------------- function Process_Arg_List (L : String_List) return String_List is Result : String_List (L'Range); begin for J in Result'Range loop if L (J).all = "%h" then Result (J) := new String'(Descriptor.Machine.Network_Name); elsif L (J).all = "%u" then Result (J) := new String'(Descriptor.Machine.User_Name); elsif L (J).all = "%s" then -- Get next args as a single string Result (J) := new String' (Argument_List_To_String (Process_Arg_List (L (J + 1 .. L'Last)), Protect_Quotes => False)); return Result (Result'First .. J); else Result (J) := new String'(L (J).all); end if; end loop; return Result; end Process_Arg_List; --------------------- -- Wait_For_Prompt -- --------------------- procedure Wait_For_Prompt (Intermediate : Boolean := False) is Regexp_Array : Compiled_Regexp_Array (1 .. 4); Matched : GNAT.Regpat.Match_Array (0 .. 1); Extra_Regexp_Array : Compiled_Regexp_Array (Descriptor.Machine.Access_Tool_Extra_Prompts'Range); Res : Expect_Match; Res_Extra : Natural; NL_Regexp : constant Pattern_Matcher := Compile ("^[^\n]*\n", Single_Line); Force_Password_Ask : Boolean; begin -- Machine is echoing commands. Skip them. if TTY_Data.Echoing then Expect (TTY_Data.Sessions (Session_Nb).Pd, Res, NL_Regexp, Descriptor.Machine.Timeout, False); end if; -- Now wait for prompt if not Intermediate then Regexp_Array (1) := Descriptor.Machine.Shell_Configured_Prompt; else Regexp_Array (1) := Descriptor.Machine.Shell_Generic_Prompt; end if; Regexp_Array (2) := Descriptor.Machine.Access_Tool_User_Prompt_Ptrn; Regexp_Array (3) := Descriptor.Machine.Access_Tool_Password_Prompt_Ptrn; Regexp_Array (4) := Descriptor.Machine.Access_Tool_Passphrase_Prompt_Ptrn; for J in Descriptor.Machine.Access_Tool_Extra_Prompts'Range loop Extra_Regexp_Array (J) := Descriptor.Machine.Access_Tool_Extra_Prompts (J).Ptrn; end loop; Expect (TTY_Data.Sessions (Session_Nb).Pd, Res, Regexp_Array & Extra_Regexp_Array, Matched, Descriptor.Machine.Timeout, False); -- First pass for CR/LF usage detection: if we receive the first -- characters with CR/LF line ending, we suppose that we need to -- do the same to answer. The second pass will take place as soon -- as we get a prompt, by sending a single LF and see if the remote -- shell understands it as a line return. declare Out_Str : constant String := Expect_Out (TTY_Data.Sessions (Session_Nb).Pd); begin if Active (Me) then Log ("RCV", Out_Str); end if; if Descriptor.Machine.Use_Dbg then Descriptor.Machine.Dbg (Out_Str, Output); end if; if Descriptor.Use_Cr_Lf = Auto then if Out_Str'Length > 0 and then Index (Out_Str, "" & ASCII.CR) < Out_Str'First then Trace (Me, "(Assuming remote uses LF. To be verified.)"); Descriptor.Use_Cr_Lf := LF; Verify_Cr_Lf := True; else Trace (Me, "(Assuming remote uses CR/LF. To be verified.)"); Descriptor.Use_Cr_Lf := CRLF; -- Indicate that we need to verify the accuracy of this -- assumption Verify_Cr_Lf := True; end if; end if; end; case Res is when Expect_Timeout => Trace (Me, "RCV timeout in Wait_For_Prompt (intermediate=" & Boolean'Image (Intermediate) & ")"); -- We just tested if LF alone was working as line terminator. -- If we receive a timeout at this point, then this means we -- need to use CR/LF if Verify_Cr_Lf and then First_Call then Verify_Cr_Lf := False; Descriptor.Use_Cr_Lf := CRLF; Trace (Me, "Re-try using CR/LF"); return; end if; if Descriptor.Machine.Use_Dbg and then TTY_Data.Sessions (Session_Nb).Pd.Buffer /= null then Descriptor.Machine.Dbg ("<Timeout> Cannot get a valid prompt. Received so far:", Input); Descriptor.Machine.Dbg (TTY_Data.Sessions (Session_Nb).Pd.Buffer.all, Output); end if; Close (TTY_Data.Sessions (Session_Nb).Pd); raise Invalid_Process with "Could not get prompt when connecting to host " & Descriptor.Machine.Nickname; when 1 => -- Received shell prompt Trace (Me, "got prompt in Wait_For_Prompt"); -- If Verify_Cr_Lf is set, then this was a test to determine -- if LF alone works. This succeeds here so we set Use_Cr_Lf to -- LF if Verify_Cr_Lf and then First_Call then Verify_Cr_Lf := False; Descriptor.Use_Cr_Lf := LF; Trace (Me, "Using LF alone, as the test succeeded"); end if; when 2 => Trace (Me, "got user name prompt in Wait_For_Prompt"); -- Received user name prompt if Descriptor.Machine.User_Name = "" then Descriptor.Machine.Set_User_Name (Query_User (Expect_Out (TTY_Data.Sessions (Session_Nb).Pd), Password_Mode => False)); if Descriptor.Machine.User_Name = "" then Close (TTY_Data.Sessions (Session_Nb).Pd); raise Invalid_Process with "Connection canceled by user"; end if; end if; My_Send (TTY_Data.Sessions (Session_Nb).Pd, Descriptor.Machine, Descriptor.Machine.User_Name, Descriptor.Use_Cr_Lf = CRLF); Wait_For_Prompt (Intermediate); when 3 | 4 => Trace (Me, "got password prompt in Wait_For_Prompt"); -- If this password was already tried, let's forget it. if Descriptor.Nb_Password_Prompt > 0 then Force_Password_Ask := True; else Force_Password_Ask := False; end if; -- Received password prompt Descriptor.Nb_Password_Prompt := Descriptor.Nb_Password_Prompt + 1; if Descriptor.Nb_Password_Prompt > 3 then Close (TTY_Data.Sessions (Session_Nb).Pd); raise Invalid_Process with "Invalid password for connection"; end if; declare Password : String_Access; begin if Res = 3 then -- Password Password := new String' (Get_Password (Descriptor.Machine.Network_Name, Descriptor.Machine.User_Name, Force_Password_Ask)); else -- Passphrase Password := new String' (Get_Passphrase (Expect_Out (TTY_Data.Sessions (Session_Nb).Pd) (Matched (1).First .. Matched (1).Last), Force_Password_Ask)); end if; if Password.all = "" then Free (Password); Close (TTY_Data.Sessions (Session_Nb).Pd); TTY_Data.Sessions (Session_Nb).State := OFF; raise Invalid_Process with "Connection canceled by user"; end if; My_Send (TTY_Data.Sessions (Session_Nb).Pd, Descriptor.Machine, Password.all, Descriptor.Use_Cr_Lf = CRLF, Password_Mode => True); Free (Password); end; Wait_For_Prompt (Intermediate); when others => -- Extra regexp array match if Res > 4 then Trace (Me, "got extra regexp prompt in Wait_For_Prompt"); Res_Extra := Natural (Res - 4); else Trace (Me, "got disconnected in Wait_For_Prompt"); Descriptor.Session_Died := True; Close (TTY_Data.Sessions (Session_Nb).Pd); raise Invalid_Process with "Unexpected error when connecting to " & Descriptor.Machine.Nickname; end if; if Descriptor.Machine.Access_Tool_Extra_Prompts (Res_Extra).Auto_Answer then My_Send (TTY_Data.Sessions (Session_Nb).Pd, Descriptor.Machine, Descriptor.Machine.Access_Tool_Extra_Prompts (Res_Extra).Answer.all, Descriptor.Use_Cr_Lf = CRLF); else declare Str : constant String := Query_User (Descriptor.Machine.Access_Tool_Extra_Prompts (Res_Extra).Question.all, False); begin if Str /= "" then My_Send (TTY_Data.Sessions (Session_Nb).Pd, Descriptor.Machine, Str, Descriptor.Use_Cr_Lf = CRLF); else Close (TTY_Data.Sessions (Session_Nb).Pd); TTY_Data.Sessions (Session_Nb).State := OFF; raise Invalid_Process with "Connection canceled."; end if; end; end if; Wait_For_Prompt (Intermediate); end case; end Wait_For_Prompt; ------------- -- My_Send -- ------------- procedure My_Send (Descriptor : in out Process_Descriptor'Class; Server : Machine_Access; Str : String; Use_Cr_Lf : Boolean; Add_LF : Boolean := True; Empty_Buffer : Boolean := False; Password_Mode : Boolean := False) is begin if Server.Use_Dbg then if Password_Mode then Server.Dbg ("******", Input); else Server.Dbg (Str, Input); end if; end if; if Active (Me) then if Password_Mode then Log ("SND", "<Sending password>"); else Log ("SND", Str); end if; end if; if Use_Cr_Lf and then Add_LF then Send (Descriptor, Str & ASCII.CR & ASCII.LF, False, Empty_Buffer); else Send (Descriptor, Str, Add_LF, Empty_Buffer); end if; end My_Send; Res : Expect_Match; Found_U : Boolean; begin -- Search for READY or OFF sessions for J in TTY_Data.Sessions'Range loop if TTY_Data.Sessions (J).State = OFF and Session_Nb = 0 then -- At least one possibility is to launch a new session Session_Nb := J; elsif TTY_Data.Sessions (J).State = READY then -- We have a READY session. Let's stop the search here Session_Nb := J; exit; end if; end loop; -- No free session available... if Session_Nb = 0 then raise No_Session_Available; end if; Descriptor.Session_Nb := Session_Nb; if TTY_Data.Sessions (Session_Nb).State = OFF then -- Launch a new session -- Construction of the arguments: -- Set command Old_Args := new GNAT.OS_Lib.Argument_List' (1 => new String'(Descriptor.Machine.Access_Tool_Command)); -- Does the common arguments allow user input ? Found_U := False; for J in Descriptor.Machine.Access_Tool_Common_Args'Range loop if Descriptor.Machine.Access_Tool_Common_Args (J).all = "%u" then Found_U := True; exit; end if; end loop; -- Set common arguments New_Args := new GNAT.OS_Lib.Argument_List' (Old_Args.all & Process_Arg_List (Descriptor.Machine.Access_Tool_Common_Args)); Simple_Free (Old_Args); Old_Args := New_Args; -- Set user argument for J in Old_Args'Range loop if Old_Args (J).all = "%U" then Found_U := True; if Descriptor.Machine.User_Name /= "" then -- Replace %U with user arguments. New_Args := new GNAT.OS_Lib.Argument_List' (Old_Args (Old_Args'First .. J - 1) & Process_Arg_List (Descriptor.Machine.Access_Tool_User_Args) & Old_Args (J + 1 .. Old_Args'Last)); else -- Remove %U: no user specified New_Args := new GNAT.OS_Lib.Argument_List' (Old_Args (Old_Args'First .. J - 1) & Old_Args (J + 1 .. Old_Args'Last)); end if; Free (Old_Args (J)); Simple_Free (Old_Args); Old_Args := New_Args; exit; end if; end loop; if not Found_U and then Descriptor.Machine.User_Name /= "" then -- Compatibility: if %U was not found, then add user arguments at -- the begining of the args list. New_Args := new GNAT.OS_Lib.Argument_List' (Process_Arg_List (Descriptor.Machine.Access_Tool_User_Args) & Old_Args.all); Simple_Free (Old_Args); Old_Args := New_Args; end if; -- Set Command argument, if supported for J in Old_Args'Range loop if Old_Args (J).all = "%C" then New_Args := new GNAT.OS_Lib.Argument_List' (Old_Args (Old_Args'First .. J - 1) & new String'(Descriptor.Machine.Shell_Command) & Old_Args (J + 1 .. Old_Args'Last)); Free (Old_Args (J)); Simple_Free (Old_Args); Old_Args := New_Args; exit; end if; end loop; -- Remove empty arguments declare Cleaned : Boolean := True; begin while Cleaned loop Cleaned := False; Search_Loop : for J in Old_Args'Range loop if Old_Args (J).all = "" then New_Args := new GNAT.OS_Lib.Argument_List' (Old_Args (Old_Args'First .. J - 1) & Old_Args (J + 1 .. Old_Args'Last)); Free (Old_Args (J)); Simple_Free (Old_Args); Old_Args := New_Args; Cleaned := True; exit Search_Loop; end if; end loop Search_Loop; end loop; end; -- Now launch the program remotely accessing the shell Log ("spawn", Argument_List_To_String (New_Args.all, False)); -- Do not use pipes, as they prevent password retrieval on windows Set_Use_Pipes (TTY_Data.Sessions (Session_Nb).Pd, Descriptor.Machine.Access_Tool_Use_Pipes); Non_Blocking_Spawn (Descriptor => TTY_Data.Sessions (Session_Nb).Pd, Command => New_Args (New_Args'First).all, Args => New_Args (New_Args'First + 1 .. New_Args'Last), Buffer_Size => 0, Err_To_Out => Err_To_Out); -- Wait for connection confirmation Descriptor.Use_Cr_Lf := Descriptor.Machine.Cr_Lf; -- First call of Wait_For_Prompt will resolve the case where -- Use_Cr_Lf is "Auto" Wait_For_Prompt (True); -- if Use_Cr_Lf is Auto, just send a LF and see if it works if Verify_Cr_Lf then TTY_Data.Sessions (Session_Nb).Pd.Flush; My_Send (TTY_Data.Sessions (Session_Nb).Pd, Descriptor.Machine, "", Use_Cr_Lf => False, Add_LF => True); First_Call := True; Wait_For_Prompt (True); end if; -- Determine if the machine echoes commands if Descriptor.Machine.Shell_No_Echo_Cmd /= "" then My_Send (TTY_Data.Sessions (Session_Nb).Pd, Descriptor.Machine, Descriptor.Machine.Shell_No_Echo_Cmd, Descriptor.Use_Cr_Lf = CRLF); Wait_For_Prompt (True); end if; if TTY_Data.Determine_Echoing then My_Send (TTY_Data.Sessions (Session_Nb).Pd, Descriptor.Machine, Test_Echo_Cmd, Descriptor.Use_Cr_Lf = CRLF); Expect (TTY_Data.Sessions (Session_Nb).Pd, Res, Echoing_Regexps, Descriptor.Machine.Timeout, False); if Descriptor.Machine.Use_Dbg then Descriptor.Machine.Dbg (Expect_Out (TTY_Data.Sessions (Session_Nb).Pd), Output); end if; if Active (Me) then Log ("RCV", Expect_Out (TTY_Data.Sessions (Session_Nb).Pd)); end if; if Res = 1 then if Descriptor.Machine.Use_Dbg then Descriptor.Machine.Dbg (" ... <remote echoes commands> ...", Output); end if; Log ("Init_Session", "remote echoes cmds"); TTY_Data.Echoing := True; elsif Res = 2 then if Descriptor.Machine.Use_Dbg then Descriptor.Machine.Dbg (" ... <remote does not echo commands> ...", Output); end if; Log ("Init_Session", "remote does not echo commands"); TTY_Data.Echoing := False; else Log ("Init_Session", "unexpected Res when testing echo"); TTY_Data.Echoing := False; end if; TTY_Data.Determine_Echoing := False; Wait_For_Prompt (True); end if; -- Send the initialization commands. These commands are sent -- before the synchronization with the prompt because they can -- affect it. for J in Descriptor.Machine.Shell_Init_Cmds'Range loop Flush (TTY_Data.Sessions (Session_Nb).Pd); My_Send (TTY_Data.Sessions (Session_Nb).Pd, Descriptor.Machine, Descriptor.Machine.Shell_Init_Cmds (J).all, Descriptor.Use_Cr_Lf = CRLF); Wait_For_Prompt (False); end loop; if Descriptor.Machine.Extra_Init_Commands'Length /= 0 then for J in Descriptor.Machine.Extra_Init_Commands'Range loop Flush (TTY_Data.Sessions (Session_Nb).Pd); My_Send (TTY_Data.Sessions (Session_Nb).Pd, Descriptor.Machine, Descriptor.Machine.Extra_Init_Commands (J).all, Descriptor.Use_Cr_Lf = CRLF); Wait_For_Prompt; end loop; end if; TTY_Data.Sessions (Session_Nb).State := READY; TTY_Data.Sessions (Session_Nb).Cr_Lf := Descriptor.Use_Cr_Lf; if On_New_Connection /= null then On_New_Connection (Descriptor.Machine.Nickname); end if; end if; Descriptor.Input_Fd := TTY_Data.Sessions (Session_Nb).Pd.Input_Fd; Descriptor.Output_Fd := TTY_Data.Sessions (Session_Nb).Pd.Output_Fd; Descriptor.Error_Fd := TTY_Data.Sessions (Session_Nb).Pd.Error_Fd; Descriptor.Pid := TTY_Data.Sessions (Session_Nb).Pd.Pid; Descriptor.Process := TTY_Data.Sessions (Session_Nb).Pd.Process; Descriptor.Use_Cr_Lf := TTY_Data.Sessions (Session_Nb).Cr_Lf; -- Set Terminated state as it is not started yet ! Descriptor.Terminated := True; Descriptor.Busy := False; TTY_Data.Sessions (Session_Nb).State := BUSY; end Get_Or_Init_Session; ------------------------ -- Non_Blocking_Spawn -- ------------------------ procedure Remote_Spawn (Descriptor : out Process_Descriptor_Access; Target_Nickname : String; Args : GNAT.OS_Lib.Argument_List; Execution_Directory : Filesystem_String := ""; Err_To_Out : Boolean := False; On_New_Connection : access procedure (Target_Name : String) := null) is Res : Expect_Match; The_Args : GNAT.OS_Lib.Argument_List := Clone (Args); begin Descriptor := new Remote_Process_Descriptor; declare Desc : Remote_Process_Descriptor renames Remote_Process_Descriptor (Descriptor.all); begin Desc.Machine := Get_Server (Target_Nickname); Ref (Desc.Machine.all); if Get_Data (Desc.Machine.all) = null then Set_Data (Desc.Machine.all, new TTY_Data_Record (Desc.Machine.Max_Nb_Connections)); end if; Desc.Session_Died := False; Get_Or_Init_Session (Desc, True, On_New_Connection); Desc.Terminated := False; Desc.Busy := True; -- Change to working directory if Execution_Directory'Length > 0 and then Desc.Machine.Shell_Cd_Cmd /= "" then declare Cd_Cmd : String renames Desc.Machine.Shell_Cd_Cmd; Idx : constant Natural := Index (Cd_Cmd, "%d"); begin Send (Descriptor.all, Cd_Cmd (Cd_Cmd'First .. Idx - 1) & '"' & (+Execution_Directory) & '"' & Cd_Cmd (Idx + 2 .. Cd_Cmd'Last)); Expect (Descriptor.all, Res, Desc.Machine.Shell_Configured_Prompt.all, Desc.Machine.Timeout, False); if Active (Me) then Log ("RCV", Expect_Out (Descriptor.all)); end if; if Desc.Machine.Use_Dbg then Desc.Machine.Dbg (Expect_Out (Descriptor.all), Output); end if; end; end if; -- First protect spaces in arguments for J in The_Args'Range loop if The_Args (J)'Length > 0 and then The_Args (J) (The_Args (J)'First) /= '"' then Space_Loop : for K in The_Args (J)'Range loop if The_Args (J) (K) = ' ' then Free (The_Args (J)); The_Args (J) := new String'('"' & Args (J).all & '"'); exit Space_Loop; end if; end loop Space_Loop; end if; end loop; -- Set filter to intercept the end of the program -- This filter also removes echoed lines. -- Force call to parent's Add_Filter. Add_Filter (Process_Descriptor (Descriptor.all), Filter_Out'Access, Output, Descriptor.all'Address); Flush (Desc); -- Now lauch the remote program Send (Desc, Argument_List_To_String (The_Args, False)); exception when Process_Died => -- Underlying session has died for J in The_Args'Range loop Free (The_Args (J)); end loop; Internal_Handle_Exceptions (Desc); raise Process_Died with "Disconnected from host " & Target_Nickname & ". Please verify your network connections and retry."; end; end Remote_Spawn; ------------------ -- Sync_Execute -- ------------------ procedure Sync_Execute (Host : String; Args : GNAT.OS_Lib.Argument_List; Out_Value : out GNAT.Strings.String_Access; Status : out Boolean; Execution_Directory : Filesystem_String := "") is Status_Nb : Integer; begin Internal_Sync_Execute (Host, Args, Execution_Directory, True, Out_Value, Status_Nb, Status); end Sync_Execute; ------------------ -- Sync_Execute -- ------------------ procedure Sync_Execute (Host : String; Args : GNAT.OS_Lib.Argument_List; Status : out Boolean; Execution_Directory : Filesystem_String := "") is Out_Value : GNAT.Strings.String_Access; Status_Nb : Integer; begin Internal_Sync_Execute (Host, Args, Execution_Directory, False, Out_Value, Status_Nb, Status); end Sync_Execute; ------------------ -- Sync_Execute -- ------------------ procedure Internal_Sync_Execute (Host : String; Args : GNAT.OS_Lib.Argument_List; Execution_Directory : Filesystem_String; Get_Output : Boolean; Out_Value : out GNAT.Strings.String_Access; Status : out Integer; Success : out Boolean) is Fd : Process_Descriptor_Access; Result : Expect_Match; Regexp : constant Pattern_Matcher := Compile ("^[^\n]*\n", Single_Line or Multiple_Lines); begin Remote_Spawn (Fd, Host, Args, Execution_Directory, Err_To_Out => False); loop Expect (Fd.all, Result, Regexp, Timeout => 5); if Result /= Expect_Timeout and then Get_Output then declare Output : constant String := Strip_CR (Expect_Out (Fd.all)); Tmp : String_Access; begin if Out_Value /= null then Tmp := new String'(Out_Value.all & Output); Free (Out_Value); Out_Value := Tmp; else Out_Value := new String'(Output); end if; end; end if; end loop; exception when Process_Died | Invalid_Process => if Fd /= null then Close (Fd.all, Status); if Status = 0 then Success := True; else Success := False; end if; else Success := False; end if; when E : others => Trace (Me, "Exception when executing Internal_Sync_Execute: " & Exception_Information (E)); Status := -1; Success := False; end Internal_Sync_Execute; ---------------- -- Filter_Out -- ---------------- procedure Filter_Out (Descriptor : Process_Descriptor'Class; Str : String; User_Data : System.Address := System.Null_Address) is pragma Unreferenced (Descriptor); type Remote_PD_Access is access all Remote_Process_Descriptor; function Convert is new Ada.Unchecked_Conversion (System.Address, Remote_PD_Access); Desc : Remote_PD_Access renames Convert (User_Data); TTY_Data : constant TTY_Data_Access := TTY_Data_Access (Get_Data (Desc.Machine.all)); Size : Natural; Matched : GNAT.Regpat.Match_Array (0 .. 1); Tmp_Buf : String_Access; Current_Filter : Filter_List; Idx_First : Natural; Idx_Last : Natural; begin if Active (Me) then Log ("RCV", Str); end if; Idx_First := Str'First; Idx_Last := Str'Last; -- The following buffer accesses suppose that the descriptor's buffer -- is dynamically allocated (i.e. buffer_size is 0) if TTY_Data.Echoing and then not Desc.Current_Echo_Skipped then -- PuTTY used in telnet mode with Windows server echoes all commands -- with a trailing '\r' (no \n). We take this into account here. -- Another case is Windows specific: in case the command line is -- too long for the console, a \r is issued in the echo, followed -- by '<' and a truncated version of the beginning of the echo. -- In the last case, we'll wait for \n for J in Str'Range loop if Str (J) = ASCII.LF or else (Str (J) = ASCII.CR and then (J = Str'Last or else (Str (J + 1) /= ASCII.LF and then Str (J + 1) /= '<'))) then Log ("Remove", Str (Str'First .. J)); Size := Str'Last - J; Tmp_Buf := Desc.Buffer; Idx_First := J + 1; Idx_Last := Str'Last; Desc.Buffer := new String (1 .. Size); Desc.Buffer.all := Str (Idx_First .. Idx_Last); Desc.Buffer_Index := Size; Desc.Current_Echo_Skipped := True; if Tmp_Buf /= null then Free (Tmp_Buf); end if; exit; end if; end loop; if not Desc.Current_Echo_Skipped then -- First line not reached. Discard the buffer Free (Desc.Buffer); Desc.Buffer := new String'(""); Desc.Buffer_Index := 0; return; end if; end if; if not Desc.Terminated then -- Catch a prompt Match (Desc.Machine.Shell_Configured_Prompt.all, Desc.Buffer (1 .. Desc.Buffer_Index), Matched); if Matched (0) /= No_Match then if Desc.Machine.Use_Dbg then Desc.Machine.Dbg (Desc.Buffer (1 .. Matched (0).Last), Output); end if; -- ??? Str may only contain the last part of the matching string, -- so the below code will not always work. Make sure that we at -- least never compute a negative index. if Str'Last > Desc.Buffer'Last and then Desc.Buffer'Last - Matched (0).First + 1 > Str'First then Idx_Last := Str'Last - (Desc.Buffer'Last - Matched (0).First + 1); else Idx_Last := 0; end if; Tmp_Buf := new String' (Desc.Buffer (1 .. Matched (0).First - 1)); Desc.Buffer_Index := Matched (0).First - 1; Free (Desc.Buffer); Desc.Buffer := Tmp_Buf; Desc.Busy := False; Desc.Terminated := True; Get_Status (Desc.all); end if; end if; -- Call filters with modified buffer if Desc.R_Filters_Lock = 0 and then Idx_Last > Idx_First then Current_Filter := Desc.R_Filters; while Current_Filter /= null loop if Current_Filter.Filter_On = Output then Current_Filter.Filter (Desc.all, Str (Idx_First .. Idx_Last), Current_Filter.User_Data); end if; Current_Filter := Current_Filter.Next; end loop; end if; if not Desc.Busy and then Desc.Terminated then raise Remote_Process_Died; end if; end Filter_Out; ---------------- -- Get_Status -- ---------------- procedure Get_Status (Descriptor : in out Remote_Process_Descriptor) is TTY_Data : constant TTY_Data_Access := TTY_Data_Access (Get_Data (Descriptor.Machine.all)); Matched : GNAT.Regpat.Match_Array (0 .. 1); Res : Expect_Match; NL_Regexp : constant Pattern_Matcher := Compile ("^[^\n\r]*(\n|\r)", Single_Line); Desc : TTY_Process_Descriptor renames TTY_Data.Sessions (Descriptor.Session_Nb).Pd; State : Shell_State_Type renames TTY_Data.Sessions (Descriptor.Session_Nb).State; begin if Descriptor.Machine.Shell_Get_Status_Cmd = "" then Descriptor.Status := 0; else -- Try to retrieve the terminated program's status if Descriptor.Use_Cr_Lf = CRLF then Send (Desc, Descriptor.Machine.Shell_Get_Status_Cmd & ASCII.CR); else Send (Desc, Descriptor.Machine.Shell_Get_Status_Cmd); end if; if Active (Me) then Log ("SND", Descriptor.Machine.Shell_Get_Status_Cmd); end if; if Descriptor.Machine.Use_Dbg then Descriptor.Machine.Dbg (Descriptor.Machine.Shell_Get_Status_Cmd, Input); end if; -- Skip echo if needed if TTY_Data.Echoing then Expect (Desc, Res, NL_Regexp, Matched, Descriptor.Machine.Timeout); Trace (Me, "skipped " & Expect_Out (Desc)); end if; -- Get status Expect (Desc, Res, Descriptor.Machine.Shell_Get_Status_Pattern.all, Matched, Descriptor.Machine.Timeout); if Descriptor.Machine.Use_Dbg then Descriptor.Machine.Dbg (Expect_Out (Desc), Output); end if; if Matched (0) /= No_Match then declare Out_Str : constant String := Expect_Out (Desc) (Matched (1).First .. Matched (1).Last); begin Descriptor.Status := Integer'Value (Out_Str); if Active (Me) then Trace (Me, "status is " & Descriptor.Status'Img); end if; exception when Constraint_Error => Trace (Me, "could not evaluate status from '" & Out_Str & "'"); Descriptor.Status := 1; end; else if Active (Me) then Trace (Me, "status does not match status pattern"); Trace (Me, Desc.Buffer.all); end if; Descriptor.Status := 1; end if; -- Get prompt Expect (Desc, Res, Descriptor.Machine.Shell_Configured_Prompt.all, Matched, Descriptor.Machine.Timeout); if Res = Expect_Timeout then -- Shell does not respond to command. Kill it raise Process_Died; elsif Descriptor.Machine.Use_Dbg then Descriptor.Machine.Dbg (Expect_Out (Desc), Output); end if; if Active (Me) then Log ("RCV", Expect_Out (Desc)); end if; end if; TTY_Data.Sessions (Descriptor.Session_Nb).State := READY; end Get_Status; ----------- -- Close -- ----------- overriding procedure Close (Descriptor : in out Remote_Process_Descriptor; Status : out Integer) is TTY_Data : constant TTY_Data_Access := TTY_Data_Access (Get_Data (Descriptor.Machine.all)); begin if Descriptor.Session_Nb = 0 then Status := 0; return; end if; if not Finalized then if Descriptor.Busy then Interrupt (Descriptor); end if; Remove_Filter (TTY_Process_Descriptor (Descriptor), Filter_Out'Access); Status := 0; declare Desc : TTY_Process_Descriptor renames TTY_Data.Sessions (Descriptor.Session_Nb).Pd; State : Shell_State_Type renames TTY_Data.Sessions (Descriptor.Session_Nb).State; begin -- Close is called before remote program terminates. Close the -- underlying session. -- This happens when the session is blocked or has died. if not Descriptor.Terminated then State := OFF; Close (Desc, Status); Descriptor.Session_Died := True; Descriptor.Terminated := True; -- Report an abnormal status here (non-zero) Status := 99; elsif not Descriptor.Session_Died then Status := Descriptor.Status; else -- The whole session died. Let's report an error. Status := 99; end if; Descriptor.Input_Fd := GNAT.OS_Lib.Invalid_FD; Descriptor.Output_Fd := GNAT.OS_Lib.Invalid_FD; Descriptor.Error_Fd := GNAT.OS_Lib.Invalid_FD; Descriptor.Pid := Invalid_Pid; Descriptor.Process := Null_Address; Descriptor.Session_Nb := 0; Unref (Descriptor.Machine); Descriptor.Machine := null; Close_Pseudo_Descriptor (Descriptor); end; else Status := 0; end if; exception when Process_Died => Internal_Handle_Exceptions (Descriptor); end Close; ----------- -- Close -- ----------- overriding procedure Close (Descriptor : in out Remote_Process_Descriptor) is Status : Integer; begin Close (Descriptor, Status); end Close; --------------- -- Interrupt -- --------------- overriding procedure Interrupt (Descriptor : in out Remote_Process_Descriptor) is TTY_Data : constant TTY_Data_Access := TTY_Data_Access (Get_Data (Descriptor.Machine.all)); Res : Expect_Match; Matched : GNAT.Regpat.Match_Array (0 .. 0); begin -- First verify that we haven't already exited the program, but not -- received the prompt if not Descriptor.Terminated then Expect (Descriptor, Res, ".+", Matched, 500); end if; if not Descriptor.Terminated then if Descriptor.Machine.Access_Tool_Send_Interrupt /= "" then -- Interrupt characters are understood when they are at the -- beginning of a line. Send LF first then, preceded by a space -- so that gdb do not try to execute the last command, if any. Send (Descriptor, ' ' & ASCII.LF & Descriptor.Machine.Access_Tool_Send_Interrupt, Add_LF => False); Expect (Descriptor, Res, ".+", Matched, 500); else -- Interrupt the session. Interrupt (TTY_Data.Sessions (Descriptor.Session_Nb).Pd); end if; end if; exception when Constraint_Error => Descriptor.Terminated := True; end Interrupt; ----------- -- Close -- ----------- procedure Close_All (Host : String) is Machine : constant Machine_Access := Get_Server (Host); TTY_Data : constant TTY_Data_Access := TTY_Data_Access (Get_Data (Machine.all)); begin if TTY_Data = null then return; end if; for J in TTY_Data.Sessions'Range loop case TTY_Data.Sessions (J).State is when OFF => -- Already shutdown null; when READY => for K in Machine.Shell_Exit_Cmds'Range loop Send (TTY_Data.Sessions (J).Pd, Machine.Shell_Exit_Cmds (K).all); end loop; begin -- ??? Should'nt we wait for the exit commands to take -- effect ? Interrupt (TTY_Data.Sessions (J).Pd); Close (TTY_Data.Sessions (J).Pd); exception when others => null; end; TTY_Data.Sessions (J).State := OFF; when BUSY => begin Interrupt (TTY_Data.Sessions (J).Pd); Close (TTY_Data.Sessions (J).Pd); exception when others => null; end; TTY_Data.Sessions (J).State := OFF; end case; end loop; end Close_All; --------------- -- Close_All -- --------------- procedure Close_All is List : constant GNAT.Strings.String_List := Gexpect.Db.Get_Servers; begin -- Be careful to not trace anything in here. This is called after -- the kernel is destroyed, and then cannot trace anymore Finalized := True; for J in List'Range loop Close_All (List (J).all); end loop; end Close_All; ---------------------- -- Is_Ready_Session -- ---------------------- function Is_Ready_Session (Nickname : String) return Boolean is Desc : Machine_Access; TTY_Data : TTY_Data_Access; begin Desc := Get_Server (Nickname); TTY_Data := TTY_Data_Access (Get_Data (Desc.all)); if TTY_Data = null then return False; end if; for J in TTY_Data.Sessions'Range loop if TTY_Data.Sessions (J).State = READY then return True; end if; end loop; return False; exception when Gexpect.Db.Invalid_Machine_Configuration => return False; end Is_Ready_Session; --------------------------- -- Handle_Pre_Disconnect -- --------------------------- procedure Handle_Pre_Disconnect (Descriptor : Remote_Process_Descriptor; Timeout : in out Integer) is begin if Descriptor.Terminated then -- We encountered the shell prompt. First let the caller retrieving -- the buffer. If buffer is empty, raise Process_Died. if Descriptor.Buffer_Index = 0 then raise Process_Died; end if; -- Don't need to wait for anything. Everything is already in the -- buffer Timeout := 1; elsif Timeout <= 0 then -- We wanted infinite timeout. This is too risky in remote mode, -- because of remote connections possible problems. Let's change it -- to a long timeout. Timeout := 60000; end if; end Handle_Pre_Disconnect; ---------------------------- -- Handle_Post_Disconnect -- ---------------------------- procedure Handle_Post_Disconnect (Descriptor : Remote_Process_Descriptor; Result : Expect_Match) is begin if not Descriptor.Terminated and then Descriptor.Machine.Use_Dbg then Descriptor.Machine.Dbg (Expect_Out (Descriptor), Output); end if; if Descriptor.Terminated and then Result = Expect_Timeout then raise Process_Died; end if; end Handle_Post_Disconnect; ------------ -- Expect -- ------------ overriding procedure Expect (Descriptor : in out Remote_Process_Descriptor; Result : out Expect_Match; Regexp : String; Timeout : Integer := 10000; Full_Buffer : Boolean := False) is The_Timeout : Integer := Timeout; begin Handle_Pre_Disconnect (Descriptor, The_Timeout); Expect (TTY_Process_Descriptor (Descriptor), Result, Regexp, The_Timeout, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); exception when Remote_Process_Died => -- When the remote process died, we need to call expect one more -- time with a timeout value of 0 to check if any non-analyzed -- buffer value matches the regexp. Expect (TTY_Process_Descriptor (Descriptor), Result, Regexp, 0, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); when Process_Died => Internal_Handle_Exceptions (Descriptor); raise; end Expect; ------------ -- Expect -- ------------ overriding procedure Expect (Descriptor : in out Remote_Process_Descriptor; Result : out Expect_Match; Regexp : GNAT.Regpat.Pattern_Matcher; Timeout : Integer := 10000; Full_Buffer : Boolean := False) is The_Timeout : Integer := Timeout; begin Handle_Pre_Disconnect (Descriptor, The_Timeout); Expect (TTY_Process_Descriptor (Descriptor), Result, Regexp, The_Timeout, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); exception when Remote_Process_Died => Expect (TTY_Process_Descriptor (Descriptor), Result, Regexp, 0, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); when Process_Died => Internal_Handle_Exceptions (Descriptor); raise; end Expect; ------------ -- Expect -- ------------ overriding procedure Expect (Descriptor : in out Remote_Process_Descriptor; Result : out Expect_Match; Regexp : String; Matched : out GNAT.Regpat.Match_Array; Timeout : Integer := 10000; Full_Buffer : Boolean := False) is The_Timeout : Integer := Timeout; begin Handle_Pre_Disconnect (Descriptor, The_Timeout); Expect (TTY_Process_Descriptor (Descriptor), Result, Regexp, Matched, The_Timeout, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); exception when Remote_Process_Died => Expect (TTY_Process_Descriptor (Descriptor), Result, Regexp, Matched, 0, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); when Process_Died => Internal_Handle_Exceptions (Descriptor); raise; end Expect; ------------ -- Expect -- ------------ overriding procedure Expect (Descriptor : in out Remote_Process_Descriptor; Result : out Expect_Match; Regexp : GNAT.Regpat.Pattern_Matcher; Matched : out GNAT.Regpat.Match_Array; Timeout : Integer := 10000; Full_Buffer : Boolean := False) is The_Timeout : Integer := Timeout; begin Handle_Pre_Disconnect (Descriptor, The_Timeout); Expect (TTY_Process_Descriptor (Descriptor), Result, Regexp, Matched, The_Timeout, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); exception when Remote_Process_Died => Expect (TTY_Process_Descriptor (Descriptor), Result, Regexp, Matched, 0, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); when Process_Died => Internal_Handle_Exceptions (Descriptor); raise; end Expect; ------------ -- Expect -- ------------ overriding procedure Expect (Descriptor : in out Remote_Process_Descriptor; Result : out Expect_Match; Regexps : Regexp_Array; Timeout : Integer := 10000; Full_Buffer : Boolean := False) is The_Timeout : Integer := Timeout; begin Handle_Pre_Disconnect (Descriptor, The_Timeout); Expect (TTY_Process_Descriptor (Descriptor), Result, Regexps, The_Timeout, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); exception when Remote_Process_Died => Expect (TTY_Process_Descriptor (Descriptor), Result, Regexps, 0, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); when Process_Died => Internal_Handle_Exceptions (Descriptor); raise; end Expect; ------------ -- Expect -- ------------ overriding procedure Expect (Descriptor : in out Remote_Process_Descriptor; Result : out Expect_Match; Regexps : Compiled_Regexp_Array; Timeout : Integer := 10000; Full_Buffer : Boolean := False) is The_Timeout : Integer := Timeout; begin Handle_Pre_Disconnect (Descriptor, The_Timeout); Expect (TTY_Process_Descriptor (Descriptor), Result, Regexps, The_Timeout, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); exception when Remote_Process_Died => Expect (TTY_Process_Descriptor (Descriptor), Result, Regexps, 0, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); when Process_Died => Internal_Handle_Exceptions (Descriptor); raise; end Expect; ------------ -- Expect -- ------------ overriding procedure Expect (Descriptor : in out Remote_Process_Descriptor; Result : out Expect_Match; Regexps : Regexp_Array; Matched : out GNAT.Regpat.Match_Array; Timeout : Integer := 10000; Full_Buffer : Boolean := False) is The_Timeout : Integer := Timeout; begin Handle_Pre_Disconnect (Descriptor, The_Timeout); Expect (TTY_Process_Descriptor (Descriptor), Result, Regexps, Matched, The_Timeout, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); exception when Remote_Process_Died => Expect (TTY_Process_Descriptor (Descriptor), Result, Regexps, Matched, 0, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); when Process_Died => Internal_Handle_Exceptions (Descriptor); raise; end Expect; ------------ -- Expect -- ------------ overriding procedure Expect (Descriptor : in out Remote_Process_Descriptor; Result : out Expect_Match; Regexps : Compiled_Regexp_Array; Matched : out GNAT.Regpat.Match_Array; Timeout : Integer := 10000; Full_Buffer : Boolean := False) is The_Timeout : Integer := Timeout; begin Handle_Pre_Disconnect (Descriptor, The_Timeout); Expect (TTY_Process_Descriptor (Descriptor), Result, Regexps, Matched, The_Timeout, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); exception when Remote_Process_Died => Expect (TTY_Process_Descriptor (Descriptor), Result, Regexps, Matched, 0, Full_Buffer); Handle_Post_Disconnect (Descriptor, Result); when Process_Died => Internal_Handle_Exceptions (Descriptor); raise; end Expect; end GNAT.Expect.TTY.Remote;
yannickmoy/spat
Ada
4,960
ads
------------------------------------------------------------------------------ -- 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. - Command line parser -- ------------------------------------------------------------------------------ with GNATCOLL.Opt_Parse; with SPAT.Spark_Info; package SPAT.Command_Line is -- Report filter mode. -- Show all, show failed only, show unproved, show unjustified. -- Later ones imply earlier ones. type Report_Mode is (All_Proofs, Failed, Unproved, Unjustified, None); Parser : GNATCOLL.Opt_Parse.Argument_Parser := GNATCOLL.Opt_Parse.Create_Argument_Parser (Help => "Parses .spark files and outputs information about them.", Command_Name => "run_spat"); -- Before using the below functions you should have called Parser.Parse and -- evaluated its return status. --------------------------------------------------------------------------- -- Convert --------------------------------------------------------------------------- function Convert (Value : in String) return SPAT.Spark_Info.Sorting_Criterion; --------------------------------------------------------------------------- -- Convert --------------------------------------------------------------------------- function Convert (Value : in String) return Report_Mode; --------------------------------------------------------------------------- -- Convert --------------------------------------------------------------------------- function Convert (Value : in String) return SPAT.Spark_Info.Sorting_Criterion is (if Value = "a" then SPAT.Spark_Info.Name elsif Value = "t" then SPAT.Spark_Info.Time else (raise GNATCOLL.Opt_Parse.Opt_Parse_Error with "unknown parameter """ & Value & """")); --------------------------------------------------------------------------- -- Convert --------------------------------------------------------------------------- function Convert (Value : in String) return Report_Mode is (if Value in "all" | "a" then All_Proofs elsif Value in "failed" | "f" then Failed elsif Value in "unproved" | "u" then Unproved elsif Value in "unjustified" | "j" then Unjustified else (raise GNATCOLL.Opt_Parse.Opt_Parse_Error with "unknown parameter """ & Value & """")); -- Command line options (in order of importance/mode). -- Project file (mandatory). package Project is new GNATCOLL.Opt_Parse.Parse_Option (Parser => Parser, Short => "-P", Long => "--project", Help => "PROJECT = GNAT project file (.gpr) (mandatory!)", Arg_Type => SPAT.Subject_Name, Default_Val => SPAT.Null_Name, Convert => SPAT.To_Name); -- Summary mode. package Summary is new GNATCOLL.Opt_Parse.Parse_Flag (Parser => Parser, Short => "-s", Long => "--summary", Help => "List summary (per file)"); -- Report mode. package Report is new -- Any of the list modes. GNATCOLL.Opt_Parse.Parse_Option (Parser => Parser, Short => "-r", Long => "--report-mode", Help => "Report output (REPORT-MODE: a = all, f = failed, u = unproved, j = unjustified)", Arg_Type => Report_Mode, Convert => Convert, Default_Val => None); -- Valid for summary and list mode. package Sort_By is new GNATCOLL.Opt_Parse.Parse_Option (Parser => Parser, Short => "-c", Long => "--sort-by", Help => "Sort output (SORT-BY: a = alphabetical, t = by time)", Arg_Type => SPAT.Spark_Info.Sorting_Criterion, Convert => Convert, Default_Val => SPAT.Spark_Info.None); package Details is new GNATCOLL.Opt_Parse.Parse_Flag (Parser => Parser, Short => "-d", Long => "--details", Help => "Show details for entities (list mode)"); package Version is new GNATCOLL.Opt_Parse.Parse_Flag (Parser => Parser, Short => "-V", Long => "--version", Help => "Show version information and exit"); end SPAT.Command_Line;
reznikmm/matreshka
Ada
5,361
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.UML.Raise_Exception_Actions.Collections is pragma Preelaborate; package UML_Raise_Exception_Action_Collections is new AMF.Generic_Collections (UML_Raise_Exception_Action, UML_Raise_Exception_Action_Access); type Set_Of_UML_Raise_Exception_Action is new UML_Raise_Exception_Action_Collections.Set with null record; Empty_Set_Of_UML_Raise_Exception_Action : constant Set_Of_UML_Raise_Exception_Action; type Ordered_Set_Of_UML_Raise_Exception_Action is new UML_Raise_Exception_Action_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_UML_Raise_Exception_Action : constant Ordered_Set_Of_UML_Raise_Exception_Action; type Bag_Of_UML_Raise_Exception_Action is new UML_Raise_Exception_Action_Collections.Bag with null record; Empty_Bag_Of_UML_Raise_Exception_Action : constant Bag_Of_UML_Raise_Exception_Action; type Sequence_Of_UML_Raise_Exception_Action is new UML_Raise_Exception_Action_Collections.Sequence with null record; Empty_Sequence_Of_UML_Raise_Exception_Action : constant Sequence_Of_UML_Raise_Exception_Action; private Empty_Set_Of_UML_Raise_Exception_Action : constant Set_Of_UML_Raise_Exception_Action := (UML_Raise_Exception_Action_Collections.Set with null record); Empty_Ordered_Set_Of_UML_Raise_Exception_Action : constant Ordered_Set_Of_UML_Raise_Exception_Action := (UML_Raise_Exception_Action_Collections.Ordered_Set with null record); Empty_Bag_Of_UML_Raise_Exception_Action : constant Bag_Of_UML_Raise_Exception_Action := (UML_Raise_Exception_Action_Collections.Bag with null record); Empty_Sequence_Of_UML_Raise_Exception_Action : constant Sequence_Of_UML_Raise_Exception_Action := (UML_Raise_Exception_Action_Collections.Sequence with null record); end AMF.UML.Raise_Exception_Actions.Collections;
charlie5/lace
Ada
4,922
ads
with lace.Event, lace.Subject; package gel.Keyboard with remote_Types -- -- Provides an interface for a keyboard. -- is type Item is limited interface and lace.Subject.item; type View is access all Item'class; -------- --- Keys -- type Key is (Nil, -- TODO: Better names. BACKSPACE, TAB, CLEAR, ENTER, PAUSE, ESCAPE, SPACE, EXCLAIM, QUOTEDBL, HASH, DOLLAR, Percent, AMPERSAND, QUOTE, LEFTPAREN, RIGHTPAREN, ASTERISK, PLUS, COMMA, MINUS, PERIOD, SLASH, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', COLON, SEMICOLON, LESS, EQUALS, GREATER, QUESTION, AT_key, LEFTBRACKET, BACKSLASH, RIGHTBRACKET, CARET, UNDERSCORE, BACKQUOTE, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, DELETE, WORLD_0, WORLD_1, WORLD_2, WORLD_3, WORLD_4, WORLD_5, WORLD_6, WORLD_7, WORLD_8, WORLD_9, WORLD_10, WORLD_11, WORLD_12, WORLD_13, WORLD_14, WORLD_15, WORLD_16, WORLD_17, WORLD_18, WORLD_19, WORLD_20, WORLD_21, WORLD_22, WORLD_23, WORLD_24, WORLD_25, WORLD_26, WORLD_27, WORLD_28, WORLD_29, WORLD_30, WORLD_31, WORLD_32, WORLD_33, WORLD_34, WORLD_35, WORLD_36, WORLD_37, WORLD_38, WORLD_39, WORLD_40, WORLD_41, WORLD_42, WORLD_43, WORLD_44, WORLD_45, WORLD_46, WORLD_47, WORLD_48, WORLD_49, WORLD_50, WORLD_51, WORLD_52, WORLD_53, WORLD_54, WORLD_55, WORLD_56, WORLD_57, WORLD_58, WORLD_59, WORLD_60, WORLD_61, WORLD_62, WORLD_63, WORLD_64, WORLD_65, WORLD_66, WORLD_67, WORLD_68, WORLD_69, WORLD_70, WORLD_71, WORLD_72, WORLD_73, WORLD_74, WORLD_75, WORLD_76, WORLD_77, WORLD_78, WORLD_79, WORLD_80, WORLD_81, WORLD_82, WORLD_83, WORLD_84, WORLD_85, WORLD_86, WORLD_87, WORLD_88, WORLD_89, WORLD_90, WORLD_91, WORLD_92, WORLD_93, WORLD_94, WORLD_95, KP0, KP1, KP2, KP3, KP4, KP5, KP6, KP7, KP8, KP9, KP_PERIOD, KP_DIVIDE, KP_MULTIPLY, KP_MINUS, KP_PLUS, KP_ENTER, KP_EQUALS, UP, DOWN, RIGHT, LEFT, INSERT, HOME, END_key, PAGEUP, PAGEDOWN, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, NUMLOCK, CAPSLOCK, SCROLLLOCK, RSHIFT, LSHIFT, RCTRL, LCTRL, RALT, LALT, RMETA, LMETA, LSUPER, RSUPER, MODE, COMPOSE, HELP, PRINT, SYSREQ, BREAK, MENU, POWER, EURO, UNDO); function is_Graphic (Self : in Key) return Boolean; ------------- --- Modifiers -- type Modifier is (LSHIFT, -- TODO: Better names. RSHIFT, LCTRL, RCTRL, LALT, RALT, LMETA, RMETA, NUM, CAPS, MODE); type modifier_Set is array (Modifier) of Boolean; no_Modifiers : constant modifier_Set; type modified_Key is record Key : keyboard.Key; modifier_Set : keyboard.modifier_Set; end record; function Image (Self : in modified_Key) return Character; ---------- --- Events -- type key_press_Event is new lace.Event.item with record modified_Key : keyboard.modified_Key; Code : Integer; end record; type key_release_Event is new lace.Event.item with record modified_Key : keyboard.modified_Key; end record; -------------- --- Attributes -- function Modifiers (Self : in Item) return Modifier_Set is abstract; -------------- --- Operations -- procedure emit_key_press_Event (Self : in out Item; Key : in keyboard.Key; key_Code : in Integer) is abstract; procedure emit_key_release_Event (Self : in out Item; Key : in keyboard.Key) is abstract; private no_Modifiers : constant modifier_Set := [others => False]; end gel.Keyboard;
reznikmm/matreshka
Ada
4,818
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Table_Data_Pilot_Members_Elements; package Matreshka.ODF_Table.Data_Pilot_Members_Elements is type Table_Data_Pilot_Members_Element_Node is new Matreshka.ODF_Table.Abstract_Table_Element_Node and ODF.DOM.Table_Data_Pilot_Members_Elements.ODF_Table_Data_Pilot_Members with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Table_Data_Pilot_Members_Element_Node; overriding function Get_Local_Name (Self : not null access constant Table_Data_Pilot_Members_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Table_Data_Pilot_Members_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Table_Data_Pilot_Members_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Table_Data_Pilot_Members_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Table.Data_Pilot_Members_Elements;
reznikmm/matreshka
Ada
3,639
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.UMLDI.UML_Profile_Diagrams.Hash is new AMF.Elements.Generic_Hash (UMLDI_UML_Profile_Diagram, UMLDI_UML_Profile_Diagram_Access);
annexi-strayline/AURA
Ada
7,319
ads
------------------------------------------------------------------------------ -- -- -- Ada User Repository Annex (AURA) -- -- ANNEXI-STRAYLINE Reference Implementation -- -- -- -- Command Line Interface -- -- -- -- ------------------------------------------------------------------------ -- -- -- -- Copyright (C) 2019-2020, ANNEXI-STRAYLINE Trans-Human Ltd. -- -- All rights reserved. -- -- -- -- Original Contributors: -- -- * Richard Wai (ANNEXI-STRAYLINE) -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- -- -- * Neither the name of 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 -- -- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- This package provides a standardized Unit/Subsystem name facility -- All names going into a Unit_Name will be come from the Ada Lexical Parser, -- and so will always have Unicode Simple Case Folding applied with Ada.Strings.Wide_Wide_Unbounded; package Unit_Names is type Unit_Name is tagged private; function "<" (Left, Right: Unit_Name) return Boolean; -- Lexicographical function Match_Initial (Name: Unit_Name; Initial: Wide_Wide_String) return Boolean; -- Returns True if Initial matches the head portion of the name. -- -- eg: Name => abcde, Initial => abcd returns True -- Initial => abcdef returns False function Valid_Unit_Name (Candidate: in Wide_Wide_String) return Boolean; -- Returns True iff Candidate is a valid unit name, according to the RM, -- which means an expanded name, or if the name is a properly formatted -- AURA "external unit" name. -- -- Valid_Unit_Name is not a precondition to Set_Name because AURA constructs -- names while parsing, and often times they transition through invalid -- states. -- -- Unit names sources externaly should be checked via this function whenever -- it is possible that the user could provide an invalid unit name function Is_External_Unit (Name: Unit_Name) return Boolean with Pre => Valid_Unit_Name (Name.To_String); -- Returns True if Name is for an "external unit" function To_String (Name: Unit_Name) return Wide_Wide_String; function To_UTF8_String (Name: Unit_Name) return String; function Set_Name (S: Wide_Wide_String) return Unit_Name; procedure Set_Name (Name: out Unit_Name; S : in Wide_Wide_String); -- Returns or Sets Name after applying Simple Case Folding to -- S. procedure Prepend (Name: in out Unit_Name; S: in Wide_Wide_String); procedure Append (Name: in out Unit_Name; S: in Wide_Wide_String); -- Prepends/Appends S to the end of Unit_Name -- Mainly used when building a name during parsing. function "&" (Left: Unit_Name; Right: Wide_Wide_String) return Unit_Name; function "&" (Left: Wide_Wide_String; Right: Unit_Name) return Unit_Name; function "&" (Left, Right: Unit_Name) return Unit_Name; function Empty (Name: Unit_Name) return Boolean; function Parent_Name (Name: Unit_Name) return Unit_Name; -- Returns the unit name for the parent of an Ada unit. If -- Name is already a top-level name (a subsystem), the returned -- Unit_Name is empty. -- -- This subprogram should not be invoked on non-Ada unit names -- -- E.g. for N: Name = "a.b.c.d": -- N.Parent_Unit = "a.b.c" -- -- For N: Name = "p": -- N.Parent_Unit = "" function Subsystem_Name (Name: Unit_Name) return Unit_Name; -- Extracts the Subsystem name from a full name. This simply means -- it extracts the identifier that consists of the first prefixed portion. -- -- E.g. For N: Name := "a.b.c.d": -- N.Subsystem_Name = "a" -- -- For N: Name := "p": -- N.Subsystem_Name = "p" -- -- For the external dependency where N: Name := "p%binding.c" -- N.Subsystem_Name = "p" function Self_Direct_Name (Name: Unit_Name) return Unit_Name; -- Returns the direct name of Name from the perspective of that unit. I.e: -- -- For N: Name := "a.b.c.d": -- N.Self_Direct_Name = "d" -- -- For N: Name := "p": -- N.Self_Direct_Name = "p" -- -- For N: Name := "p%binding.c" -- N.Self_Direct_Name = "binding.c" private package WWU renames Ada.Strings.Wide_Wide_Unbounded; type Unit_Name is tagged record Name_String: WWU.Unbounded_Wide_Wide_String; end record; end Unit_Names;
reznikmm/matreshka
Ada
4,607
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Text.Time_Value_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Text_Time_Value_Attribute_Node is begin return Self : Text_Time_Value_Attribute_Node do Matreshka.ODF_Text.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Text_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Text_Time_Value_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Time_Value_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Text_URI, Matreshka.ODF_String_Constants.Time_Value_Attribute, Text_Time_Value_Attribute_Node'Tag); end Matreshka.ODF_Text.Time_Value_Attributes;
shintakezou/langkit
Ada
14,611
ads
-- -- Copyright (C) 2019-2022, AdaCore -- SPDX-License-Identifier: Apache-2.0 -- with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Unchecked_Deallocation; with Langkit_Support.Adalog.Solver_Interface; with Langkit_Support.Vectors; generic with package Solver_Ifc is new Langkit_Support.Adalog.Solver_Interface (<>); package Langkit_Support.Adalog.Solver is use Solver_Ifc; use Logic_Vars; type Relation_Type (<>) is private; type Relation is access all Relation_Type; -- Type for a relation. A relation is either an atomic relation, or a -- compound relation, which can represent a tree of relations of unbounded -- depth. Solving a relation will assign values to every logic variable -- involved in the relation or fail. -- -- A relation is manually ref-counted, and has an ownership share of every -- sub-relation. When the ref-count of a root relation, reaches 0, the -- ownership share of each of its sub-relations is destroyed. No_Relation : constant Relation := null; procedure Inc_Ref (Self : Relation); -- Increment the reference count of Self procedure Dec_Ref (Self : in out Relation); -- Decrement the reference count of Self. If no reference is left, -- deallocate ``Self.all`` and set ``Self`` to ``null``. procedure Solve (Self : Relation; Solution_Callback : access function (Vars : Logic_Var_Array) return Boolean; Solve_Options : Solve_Options_Type := Default_Options; Timeout : Natural := 0); -- Run the solver on the ``Self`` relation. For every solution found, call -- ``Solution_Callback`` with the variables involved in ``Self``, and -- continue looking for other solutions iff it returns True. See -- ``Solve_Options Type`` for the available way to configure the resolution -- process. -- -- ``Timeout`` determines the maximum of times we evaluate atoms before -- aborting the solver. If left to 0, no timeout applies. function Solve_First (Self : Relation; Solve_Options : Solve_Options_Type := Default_Options; Timeout : Natural := 0) return Boolean; -- Run the solver on the ``Self`` relation. Return whether there is at -- least one valid solution. See ``Solve_Options Type`` for the available -- way to configure the resolution process. -- -- ``Timeout`` determines the maximum of times we evaluate atoms before -- aborting the solver. If left to 0, no timeout applies. function Image (Self : Relation) return String; -- Return a textual representation of ``Self`` as a multi-line string --------------------------- -- Relation constructors -- --------------------------- package Relation_Vectors is new Langkit_Support.Vectors (Relation, Small_Vector_Capacity => 16); subtype Relation_Array is Relation_Vectors.Elements_Array; No_Relation_Array : Relation_Array renames Relation_Vectors.Empty_Array; -- In all constructor functions below, ``Debug_String`` is an optional -- string attached to the returned relation, to be used in the result of -- the ``Image`` function. Relations do not manage their lifetimes: it is -- up to users to free them when appropriate. function Create_Predicate (Logic_Var : Logic_Vars.Logic_Var; Pred : Predicate_Type'Class; Debug_String : String_Access := null) return Relation; -- Create a relation that will solve successfully when calling ``Pred`` on -- the value of ``Logic_Var`` returns ``True``. function Create_N_Predicate (Logic_Vars : Logic_Var_Array; Pred : N_Predicate_Type'Class; Debug_String : String_Access := null) return Relation; -- Create a relation that will solve successfully when calling ``Pred`` on -- the values of all variables in ``Logic_Vars`` returns ``True``. function Create_Assign (Logic_Var : Logic_Vars.Logic_Var; Value : Value_Type; Conv : Converter_Type'Class := No_Converter; Debug_String : String_Access := null) return Relation; -- Create a relation that will solve successfully if it is possible to -- assign the given ``Value`` to ``Logic_Var``. Two attempts to assign -- different values to the same logic variable will make the relation -- always fail. -- -- If ``Conv`` is provided, the actually assigned value is the result of -- ``Conv`` when called on ``Value``. function Create_Unify (Left, Right : Logic_Vars.Logic_Var; Debug_String : String_Access := null) return Relation; -- Create a relation that will solve successfully if ``Left`` and ``Right`` -- can be assigned the same value. function Create_Propagate (From, To : Logic_Vars.Logic_Var; Conv : Converter_Type'Class := No_Converter; Debug_String : String_Access := null) return Relation; -- Create a relation that will solve successfully if it is possible to -- assign the value in ``From`` to the ``To`` variable. -- -- If ``Conv`` is provided, the actually assigned value is the result of -- ``Conv`` when called on ``From``'s value. function Create_N_Propagate (To : Logic_Var; Comb : Combiner_Type'Class; Logic_Vars : Logic_Var_Array; Debug_String : String_Access := null) return Relation; -- Create a relation that will solve successfully if it is possible to -- assign to ``To`` the value computed by calling ``Comb`` on the given -- ``Logic_Vars``. function Create_Domain (Logic_Var : Logic_Vars.Logic_Var; Domain : Value_Array; Debug_String : String_Access := null) return Relation; -- Create a relation that will solve successfully if it is possible to -- assign one value in ``Domain`` to ``Logic_Var``. -- -- This is a shortcut: ``Domain (Var, (A, B, ...))`` is equivalent to -- ``Any (Assign (Var, A), Assign (Var, B), ...)``. function Create_Any (Relations : Relation_Array; Debug_String : String_Access := null) return Relation; -- Create a relation that will solve successfully when at least one of the -- the relations in ``Relations`` solves successfully. function Create_All (Relations : Relation_Array; Debug_String : String_Access := null) return Relation; -- Create a relation that will solve successfully when all of the the -- relations in ``Relations`` solves successfully. function Create_Or (L, R : Relation; Debug_String : String_Access := null) return Relation is (Create_Any ((L, R), Debug_String)); function Create_And (L, R : Relation; Debug_String : String_Access := null) return Relation is (Create_All ((L, R), Debug_String)); function Create_True (Debug_String : String_Access := null) return Relation; -- Return a relation that always solves successfully function Create_False (Debug_String : String_Access := null) return Relation; -- Return a relation that never solves successfully private type Converter_Access is access all Converter_Type'Class; type Combiner_Access is access all Combiner_Type'Class; type Predicate_Access is access all Predicate_Type'Class; type N_Predicate_Access is access all N_Predicate_Type'Class; procedure Free is new Ada.Unchecked_Deallocation (Converter_Type'Class, Converter_Access); procedure Free is new Ada.Unchecked_Deallocation (Combiner_Type'Class, Combiner_Access); procedure Free is new Ada.Unchecked_Deallocation (Predicate_Type'Class, Predicate_Access); procedure Free is new Ada.Unchecked_Deallocation (N_Predicate_Type'Class, N_Predicate_Access); package Logic_Var_Vectors is new Langkit_Support.Vectors (Logic_Var); subtype Logic_Var_Vector is Logic_Var_Vectors.Vector; type Logic_Var_Vector_Access is access Logic_Var_Vector; --------------------- -- Atomic_Relation -- --------------------- type Atomic_Kind is (Propagate, N_Propagate, Unify, Assign, Predicate, N_Predicate, True, False); type Atomic_Relation_Type (Kind : Atomic_Kind := Propagate) is record Target : Logic_Var; -- What is the Target and whether it is considered as a "used" or -- "defined" logic variable depends on the kind of relation. See the -- "Atomic relations dependency graph" section for more information. case Kind is when Assign | Propagate => Conv : Converter_Access := null; -- Conversion function for the value to assign/propagate. If left -- to null, use the value itself. case Kind is when Assign => Val : Value_Type; -- The value we want to assign to ``Target`` when Propagate => From : Logic_Var; -- The variable from which we want to propagate to -- ``Target``. when others => null; end case; when N_Propagate => Comb_Vars : Logic_Var_Vector; -- List of logic variables used by the converter Comb : Combiner_Access; -- Combiner function to assign a value to Target that is computed -- from the value of N_Propagate_Vars. when Predicate => Pred : Predicate_Access; -- The predicate that will be applied as part of this relation when N_Predicate => Vars : Logic_Var_Vector; -- List of logic variables used by the predicate N_Pred : N_Predicate_Access; -- The predicate that will be applied as part of this relation when Unify => Unify_From : Logic_Var; when True | False => null; end case; end record; -- An atomic relation is a relation that has no children. When we get to -- solve a specific solution, we expect to have a set of only atomic -- relations. -- -- Atomic relations can be either ``Assign``, ``Propagate, or -- ``Predicate``. Their semantics are defined in the corresponding public -- relation constructors. function Image (Self : Atomic_Relation_Type) return String; -- Helper for the ``Image`` primitive of ``Relation`` procedure Destroy (Self : in out Atomic_Relation_Type); -- Destroy this atomic relation ---------------------------------------- -- Atomic relations dependency graph -- ---------------------------------------- -- This section defines operations to explore the depenency graph between -- atomic relations. They are used to: -- -- 1. Sort a list of atomic relations topologically, so that they form an -- executable sequence of instructions. -- -- 2. Define a map from vars to atomic rels where for every logic variable -- ``V``, the map maps ``V -> [R1, R2, R3, ...]`` where -- ``Used_Var (Rn) = V``. This map will allow us to cut some branches of -- the solution tree early. -- -- To compute dependencies, we consider for each relation which variable it -- defines (sets a value: see the ``Defined_Var`` function below) or which -- variable it uses (copies/checks the value associated to this variable: -- see the ``Used_Var`` below). -- -- TODO??? Some relations actually use multiple logic variables -- (N_Predicate), while Unify does not really use/define any, but actually -- treats both variables as aliases. This dataflow analysis probably -- deserves a refactoring to clarify this. function Is_Defined_Or_Null (Var : Logic_Var) return Boolean is (Var = null or else Is_Defined (Var)); -- Shortcut predicate. Returns whether a variable is defined or is null function Used_Var (Self : Atomic_Relation_Type) return Logic_Var; -- Return the variable that this atomic relation uses, if there is one function Defined_Var (Self : Atomic_Relation_Type) return Logic_Var; -- Return the variable that this atomic relation defines, if there is one ----------------------- -- Compound relation -- ----------------------- type Compound_Kind is (Kind_All, Kind_Any); type Compound_Relation_Type is record Kind : Compound_Kind; Rels : Relation_Vectors.Vector; end record; procedure Destroy (Self : in out Compound_Relation_Type); -------------- -- Relation -- -------------- type Relation_Kind is (Atomic, Compound); type Relation_Type (Kind : Relation_Kind) is record Ref_Count : Natural; -- Number of ownership shares for this relation. When it drops to zero, -- it must be deallocated. Id : Natural; -- Id for this relation, for debugging purposes: dealing with small -- integers is much easier for humans than dealing with addresses, or -- even with relation images when one wants to quickly know if two -- relations are the same in the logs. -- -- Ids are assigned right before starting relation -- simplification/solving, and are as much as possible propagated when -- creating a new relation to replace a previous one. -- -- 0 means "Id unassigned". Debug_Info : Ada.Strings.Unbounded.String_Access := null; case Kind is when Atomic => Atomic_Rel : Atomic_Relation_Type; when Compound => Compound_Rel : Compound_Relation_Type; end case; end record; procedure Destroy (Self : Relation); -- TODO??? Use predicates once the GNAT bug is fixed. -- -- .. code:: -- -- subtype Atomic_Relation is Relation -- with Predicate => Atomic_Relation = null -- or else Atomic_Relation.Kind = Atomic; -- -- subtype Compound_Relation is Relation -- with Predicate => Compound_Relation = null -- or else Compound_Relation.Kind = Compound; -- -- subtype Any_Rel is Compound_Relation -- with Predicate => Any_Rel.Compound_Rel.Kind = Kind_Any; subtype Atomic_Relation is Relation; subtype Compound_Relation is Relation; subtype Any_Rel is Relation; function Solve_Atomic (Self : Atomic_Relation) return Boolean; -- Solve this atomic relation, return if we have found a valid solution. -- Note that this assumes that all "input" logic variables in Self are -- already defined. end Langkit_Support.Adalog.Solver;
stcarrez/ada-security
Ada
8,116
ads
----------------------------------------------------------------------- -- security-oauth-file_registry -- File Based Application and Realm -- Copyright (C) 2017, 2018 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Ada.Strings.Hash; with Ada.Containers.Indefinite_Hashed_Maps; with Util.Strings; with Util.Properties; with Security.OAuth.Servers; with Security.Permissions; private with Util.Strings.Maps; private with Security.Random; package Security.OAuth.File_Registry is type File_Principal is new Servers.Principal with private; type File_Principal_Access is access all File_Principal'Class; -- Get the principal name. overriding function Get_Name (From : in File_Principal) return String; -- Check if the permission was granted. overriding function Has_Permission (Auth : in File_Principal; Permission : in Security.Permissions.Permission_Index) return Boolean; type File_Application_Manager is new Servers.Application_Manager with private; -- Find the application that correspond to the given client id. -- The <tt>Invalid_Application</tt> exception should be raised if there is no such application. overriding function Find_Application (Realm : in File_Application_Manager; Client_Id : in String) return Servers.Application'Class; -- Add the application to the application repository. procedure Add_Application (Realm : in out File_Application_Manager; App : in Servers.Application); -- Load from the properties the definition of applications. The list of applications -- is controlled by the property <prefix>.list which contains a comma separated list of -- application names or ids. The application definition are represented by properties -- of the form: -- <prefix>.<app>.client_id -- <prefix>.<app>.client_secret -- <prefix>.<app>.callback_url procedure Load (Realm : in out File_Application_Manager; Props : in Util.Properties.Manager'Class; Prefix : in String); procedure Load (Realm : in out File_Application_Manager; Path : in String; Prefix : in String); type File_Realm_Manager is limited new Servers.Realm_Manager with private; -- Authenticate the token and find the associated authentication principal. -- The access token has been verified and the token represents the identifier -- of the Tuple (client_id, user, session) that describes the authentication. -- The <tt>Authenticate</tt> procedure should look in its database (internal -- or external) to find the authentication principal that was granted for -- the token Tuple. When the token was not found (because it was revoked), -- the procedure should return a null principal. If the authentication -- principal can be cached, the <tt>Cacheable</tt> value should be set. -- In that case, the access token and authentication principal are inserted -- in a cache. overriding procedure Authenticate (Realm : in out File_Realm_Manager; Token : in String; Auth : out Servers.Principal_Access; Cacheable : out Boolean); -- Create an auth token string that identifies the given principal. The returned -- token will be used by <tt>Authenticate</tt> to retrieve back the principal. The -- returned token does not need to be signed. It will be inserted in the public part -- of the returned access token. overriding function Authorize (Realm : in File_Realm_Manager; App : in Servers.Application'Class; Scope : in String; Auth : in Servers.Principal_Access) return String; overriding procedure Verify (Realm : in out File_Realm_Manager; Username : in String; Password : in String; Auth : out Servers.Principal_Access); overriding procedure Verify (Realm : in out File_Realm_Manager; Token : in String; Auth : out Servers.Principal_Access); overriding procedure Revoke (Realm : in out File_Realm_Manager; Auth : in Servers.Principal_Access); -- Crypt the password using the given salt and return the string composed with -- the salt in clear text and the crypted password. function Crypt_Password (Realm : in File_Realm_Manager; Salt : in String; Password : in String) return String; -- Load from the properties the definition of users. The list of users -- is controlled by the property <prefix>.list which contains a comma separated list of -- users names or ids. The user definition are represented by properties -- of the form: -- <prefix>.<user>.username -- <prefix>.<user>.password -- <prefix>.<user>.salt -- When a 'salt' property is defined, it is assumed that the password is encrypted using -- the salt and SHA1 and base64url. Otherwise, the password is in clear text. procedure Load (Realm : in out File_Realm_Manager; Props : in Util.Properties.Manager'Class; Prefix : in String); procedure Load (Realm : in out File_Realm_Manager; Path : in String; Prefix : in String); -- Add a username with the associated password. procedure Add_User (Realm : in out File_Realm_Manager; Username : in String; Password : in String); private use Ada.Strings.Unbounded; package Application_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => String, Element_Type => Servers.Application, Hash => Ada.Strings.Hash, Equivalent_Keys => "=", "=" => Servers."="); package Token_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => String, Element_Type => File_Principal_Access, Hash => Ada.Strings.Hash, Equivalent_Keys => "=", "=" => "="); package User_Maps renames Util.Strings.Maps; type File_Principal is new Servers.Principal with record Token : Ada.Strings.Unbounded.Unbounded_String; Name : Ada.Strings.Unbounded.Unbounded_String; Perms : Security.Permissions.Permission_Index_Set := Security.Permissions.EMPTY_SET; end record; type File_Application_Manager is new Servers.Application_Manager with record Applications : Application_Maps.Map; end record; type File_Realm_Manager is limited new Servers.Realm_Manager with record Users : User_Maps.Map; Tokens : Token_Maps.Map; Random : Security.Random.Generator; Token_Bits : Positive := 256; end record; end Security.OAuth.File_Registry;
zhmu/ananas
Ada
3,114
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . L O C A L E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2010-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System; use System; package body Ada.Locales is type Str_4 is new String (1 .. 4); -------------- -- Language -- -------------- function Language return Language_Code is procedure C_Get_Language_Code (P : Address); pragma Import (C, C_Get_Language_Code); F : Str_4; begin C_Get_Language_Code (F'Address); return Language_Code (F (1 .. 3)); end Language; ------------- -- Country -- ------------- function Country return Country_Code is procedure C_Get_Country_Code (P : Address); pragma Import (C, C_Get_Country_Code); F : Str_4; begin C_Get_Country_Code (F'Address); return Country_Code (F (1 .. 2)); end Country; end Ada.Locales;
reznikmm/matreshka
Ada
3,646
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.Standard_Profile_L2.Processes.Hash is new AMF.Elements.Generic_Hash (Standard_Profile_L2_Process, Standard_Profile_L2_Process_Access);
sungyeon/drake
Ada
7,465
adb
with Ada.Calendar.Formatting; with System.Long_Long_Integer_Types; package body Ada.Calendar.Arithmetic is use type System.Long_Long_Integer_Types.Long_Long_Unsigned; subtype Long_Long_Unsigned is System.Long_Long_Integer_Types.Long_Long_Unsigned; procedure Addition (Left : Time; Right : Day_Count; Result : out Time); procedure Addition (Left : Time; Right : Day_Count; Result : out Time) is Left_Seconds : Day_Duration; Left_Leap_Second : Boolean; begin Result := Left + Duration'(Duration (Right) * (24 * 60 * 60.0)); declare -- split Left Year : Year_Number; Month : Month_Number; Day : Day_Number; begin Formatting.Split (Left, Year => Year, Month => Month, Day => Day, Seconds => Left_Seconds, Leap_Second => Left_Leap_Second, Time_Zone => 0); end; declare -- split Result Year : Year_Number; Month : Month_Number; Day : Day_Number; Seconds : Duration; -- may include a leap second Leap_Second : Boolean; begin Formatting.Split (Result, Year => Year, Month => Month, Day => Day, Seconds => Seconds, Leap_Second => Leap_Second, Time_Zone => 0); if Leap_Second then Seconds := Seconds + 1.0; end if; if Left_Seconds - Seconds >= 12 * 60 * 60.0 then Result := Result - Seconds - Duration'(1.0); Formatting.Split (Result, Year => Year, Month => Month, Day => Day, Seconds => Seconds, Leap_Second => Leap_Second, Time_Zone => 0); pragma Assert (Seconds = Duration'(24 * 60 * 60.0) - 1.0); if Leap_Second then Seconds := Seconds + 1.0; end if; elsif Seconds - Left_Seconds >= 12 * 60 * 60.0 then Result := Result + (Duration'(24 * 60 * 60.0 + 1.0) - Seconds); Formatting.Split (Result, Year => Year, Month => Month, Day => Day, Seconds => Seconds, Leap_Second => Leap_Second, Time_Zone => 0); pragma Assert (Seconds = 0.0); pragma Assert (not Leap_Second); end if; Result := Result + (Left_Seconds - Seconds); end; if Left_Leap_Second then declare -- set if a leap second is existing in the result day New_Result : constant Time := Result + Duration'(1.0); Year : Year_Number; Month : Month_Number; Day : Day_Number; Seconds : Day_Duration; Leap_Second : Boolean; begin Formatting.Split (New_Result, Year => Year, Month => Month, Day => Day, Seconds => Seconds, Leap_Second => Leap_Second, Time_Zone => 0); if Leap_Second then pragma Assert (Seconds = Left_Seconds); Result := New_Result; end if; end; end if; end Addition; -- implementation procedure Difference ( Left, Right : Time; Days : out Day_Count; Seconds : out Duration; Leap_Seconds : out Leap_Seconds_Count) is Minus : Boolean; L, H : Time; L_Seconds : Duration; -- may include a leap second H_Seconds : Duration; -- may over 24H Truncated_L, Truncated_H : Time; begin if Left < Right then Minus := True; L := Left; H := Right; else Minus := False; L := Right; H := Left; end if; declare -- split L Year : Year_Number; Month : Month_Number; Day : Day_Number; Leap_Second : Boolean; begin Formatting.Split (L, Year => Year, Month => Month, Day => Day, Seconds => L_Seconds, Leap_Second => Leap_Second, Time_Zone => 0); Truncated_L := Formatting.Time_Of ( Year => Year, Month => Month, Day => Day, Seconds => 0.0, Leap_Second => False, Time_Zone => 0); if Leap_Second then L_Seconds := L_Seconds + 1.0; end if; end; declare -- split H Year : Year_Number; Month : Month_Number; Day : Day_Number; Seconds : Day_Duration; Leap_Second : Boolean; T : Time; begin Formatting.Split (H, Year => Year, Month => Month, Day => Day, Seconds => H_Seconds, Leap_Second => Leap_Second, Time_Zone => 0); Truncated_H := Formatting.Time_Of ( Year => Year, Month => Month, Day => Day, Seconds => 0.0, Leap_Second => False, Time_Zone => 0); if Leap_Second then H_Seconds := H_Seconds + 1.0; end if; if H_Seconds < L_Seconds then T := Truncated_H; Formatting.Split (T - Duration'(1.0), Year => Year, Month => Month, Day => Day, Seconds => Seconds, Leap_Second => Leap_Second, -- ignored Time_Zone => 0); Truncated_H := Formatting.Time_Of ( Year => Year, Month => Month, Day => Day, Seconds => 0.0, Leap_Second => False, Time_Zone => 0); H_Seconds := H_Seconds + (T - Truncated_H); end if; end; declare Truncated_D : constant Duration := Truncated_H - Truncated_L; Quotient, Remainder : Long_Long_Unsigned; begin System.Long_Long_Integer_Types.Divide ( Long_Long_Unsigned'Integer_Value (Truncated_D), Long_Long_Unsigned'Integer_Value (Duration'(24 * 60 * 60.0)), Quotient => Quotient, Remainder => Remainder); Days := Day_Count (Quotient); Seconds := H_Seconds - L_Seconds; Leap_Seconds := Integer (Remainder / 1_000_000_000); pragma Assert (Remainder rem 1_000_000_000 = 0); end; if Minus then Days := -Days; Seconds := -Seconds; Leap_Seconds := -Leap_Seconds; end if; end Difference; function "+" (Left : Time; Right : Day_Count) return Time is Result : Time; begin Addition (Left, Right, Result => Result); return Result; end "+"; function "+" (Left : Day_Count; Right : Time) return Time is begin return Right + Left; end "+"; function "-" (Left : Time; Right : Day_Count) return Time is begin return Left + (-Right); end "-"; function "-" (Left, Right : Time) return Day_Count is Days : Day_Count; Seconds : Duration; Leap_Seconds : Leap_Seconds_Count; begin Difference (Left, Right, Days => Days, Seconds => Seconds, Leap_Seconds => Leap_Seconds); return Days; end "-"; end Ada.Calendar.Arithmetic;
tum-ei-rcs/StratoX
Ada
58
adb
../../../hal/boards/common/tools/generic_bounded_image.adb
rogermc2/GA_Ada
Ada
41,716
adb
-- Based on libgasandbox.draw.h and draw.cpp with Ada.Numerics; with Ada.Numerics.Elementary_Functions; with Ada.Text_IO; use Ada.Text_IO; with GL; with GL.Attributes; with GL.Culling; with GL.Objects.Buffers; with GL.Objects.Vertex_Arrays; with GL.Rasterization; with GL.Toggles; with GL.Types; use GL.Types; with GL_Util; with Maths; with Utilities; with Blade_Types; with E3GA; with E3GA_Utilities; with GA_Maths; -- with GA_Utilities; with Geosphere; with Multivectors; with Shader_Manager; package body GA_Draw is Count : Integer := 0; procedure Draw_Circle (Palet_Type : Palet.Colour_Palet; Method : GA_Draw.Method_Type); -- ------------------------------------------------------------------------ procedure Draw_Base (Render_Program : GL.Objects.Programs.Program; Scale : Float) is use GL.Objects.Buffers; use GA_Maths.Float_Functions; Vertex_Array : GL.Objects.Vertex_Arrays.Vertex_Array_Object; Vertex_Buffer : GL.Objects.Buffers.Buffer; S_Scale : constant Single := Single (5.0 / Scale); Z : float := 0.0; Num_Steps : constant int := 32; Rotor_Step : constant float := 2.0 * Ada.Numerics.Pi / float (Num_Steps); Fan : Singles.Vector3_Array (1 .. Num_Steps + 1); begin Vertex_Array.Initialize_Id; Vertex_Array.Bind; Vertex_Buffer.Initialize_Id; Array_Buffer.Bind (Vertex_Buffer); Fan (1) := (S_Scale, 0.0, -0.25); for Count in 2 .. Num_Steps + 1 loop Fan (Count) := (S_Scale * Single (Cos (Z)), S_Scale * Single (Sin (Z)), -0.25); Z := Z + Rotor_Step; end loop; Utilities.Load_Vertex_Buffer (Array_Buffer, Fan, Static_Draw); GL.Objects.Programs.Use_Program (Render_Program); GL.Attributes.Enable_Vertex_Attrib_Array (0); GL.Objects.Buffers.Array_Buffer.Bind (Vertex_Buffer); GL.Attributes.Set_Vertex_Attrib_Pointer (0, 3, Single_Type, 0, 0); GL.Objects.Vertex_Arrays.Draw_Arrays (Mode => Triangle_Fan, First => 0, Count => Num_Steps); GL.Attributes.Disable_Vertex_Attrib_Array (0); exception when others => Put_Line ("An exception occurred in GA_Draw.Draw_Base."); raise; end Draw_Base; -- ------------------------------------------------------------------------ -- Draw_Bivector corresponds to draw.draw_Bivector of draw.cpp -- The parameter names correspond of those in draw.h! procedure Draw_Bivector (Render_Program : GL.Objects.Programs.Program; Base, Normal, Ortho_1, Ortho_2 : C3GA.Vector_E3; Palet_Type : Palet.Colour_Palet; Scale : float := 1.0; Method : Method_Type := Draw_Bivector_Circle) is use GA_Maths; use Float_Functions; use GL.Types.Singles; -- Rotor_Step : float := 2.0 * Ada.Numerics.Pi / 64.0; -- Cords : Float_3D := (0.0, 0.0, 0.0); -- Translate : Vector3 := (0.0, 0.0, 0.0); -- O2 : Multivectors.M_Vector := Ortho_2; Model_Matrix : GL.Types.Singles.Matrix4 := Identity4; Position_Norm : Float := C3GA.Norm_E2 (Base); Normal_Norm : constant Float := C3GA.Norm_E2 (Normal); Base_Coords : constant GA_Maths.Float_3D := C3GA.Get_Coords (Base); Normal_Coords : constant GA_Maths.Float_3D := C3GA.Get_Coords (Normal); Ortho_1_Coords : constant GA_Maths.Float_3D := C3GA.Get_Coords (Ortho_1); Ortho_2_Coords : constant GA_Maths.Float_3D := C3GA.Get_Coords (Ortho_2); Translation_Vector : Vector3 := (0.0, 0.0, 0.0); MV_Normal : constant Multivectors.M_Vector := Multivectors.New_Vector (Normal_Coords (1), Normal_Coords (2), Normal_Coords (3)); MV_Ortho_1 : constant Multivectors.M_Vector := Multivectors.New_Vector (Ortho_1_Coords (1), Ortho_1_Coords (2), Ortho_1_Coords (3)); MV_Ortho_2 : constant Multivectors.M_Vector := Multivectors.New_Vector (Ortho_2_Coords (1), Ortho_2_Coords (2), Ortho_2_Coords (3)); Rotation_Matrix : Matrix4 := Identity4; Scaling_Matrix : Matrix4; Translation_Matrix : Matrix4 := Identity4; BV_Scale : Single := Single (Scale); RT : Multivectors.Rotor; begin GL.Objects.Programs.Use_Program (Render_Program); -- Set position if Position_Norm > 0.0 then Translation_Vector := (Single (Base_Coords (1)), Single (Base_Coords (2)), Single (Base_Coords (3))); Translation_Matrix := Maths.Translation_Matrix (Translation_Vector); end if; Shader_Manager.Set_Translation_Matrix (Translation_Matrix); if Method /= Draw_Bivector_Parallelogram and then Method /= Draw_Bivector_Parallelogram_No_Vectors then -- Rotate e3 to normal direction if Normal_Norm > 0.0 then Rotation_Matrix := GA_Maths.Vector_Rotation_Matrix ((0.0, 0.0, 1.0), Normal); end if; RT := E3GA_Utilities.Rotor_Vector_To_Vector (Multivectors.Basis_Vector (Blade_Types.E3_e3), MV_Normal); GL_Util.Rotor_GL_Multiply (RT, Rotation_Matrix); else -- Draw_Bivector_Parallelogram Position_Norm := C3GA.Norm_E2 (C3GA.To_VectorE3GA ((Multivectors.Outer_Product (MV_Ortho_1, MV_Ortho_2)))); BV_Scale := Single (Sqrt (Pi / Position_Norm)) * BV_Scale; end if; Shader_Manager.Set_Rotation_Matrix (Rotation_Matrix); Scaling_Matrix := Maths.Scaling_Matrix ((BV_Scale, BV_Scale, BV_Scale)); Model_Matrix := Scaling_Matrix * Model_Matrix; Shader_Manager.Set_Model_Matrix (Model_Matrix); case Method is when Draw_Bivector_Circle | Draw_Bivector_Circle_Outline => Draw_Circle (Palet_Type, Method); when others => null; end case; exception when others => Put_Line ("An exception occurred in GA_Draw.Draw_Bivector."); raise; end Draw_Bivector; -- ---------------------------------------------------------------------- -- procedure Draw_Bivector (Render_Program : GL.Objects.Programs.Program; -- Base, Ortho_1, Ortho_2 : Multivectors.M_Vector; -- Palet_Type : Palet.Colour_Palet; -- Scale : float := 1.0; -- Method : Method_Type := Draw_Bivector_Circle) is -- use GA_Maths; -- use GL.Types.Singles; -- -- Vertex_Array_Object : GL.Objects.Vertex_Arrays.Vertex_Array_Object; -- -- Rotor_Step : float := 2.0 * Ada.Numerics.Pi / 64.0; -- Scale_S : constant GL.Types.Single := GL.Types.Single (Scale); -- Translate : Vector3 := (0.0, 0.0, 0.0); -- -- O2 : Multivectors.M_Vector := Ortho_2; -- -- Model_Matrix : GL.Types.Singles.Matrix4 := GL.Types.Singles.Identity4; -- MVP_Matrix : Matrix4 := Singles.Identity4; -- Scaled : GL.Types.Single; -- E2_Norm : Float; -- begin -- GL.Objects.Programs.Use_Program (Render_Program); -- Vertex_Array_Object.Initialize_Id; -- Vertex_Array_Object.Bind; -- -- Shader_Manager.Set_Ambient_Colour ((1.0, 1.0, 1.0, 1.0)); -- -- -- MVP_Matrix := Model_Matrix; -- Translate := (Single (C3GA.e1 (Base)), -- Single (C3GA.e2 (Base)), -- Single (C3GA.e3 (Base))); -- E2_Norm := Multivectors.Norm_E2 (Base); -- if E2_Norm /= 0.0 then -- MVP_Matrix := Maths.Translation_Matrix (Translate) * MVP_Matrix; -- end if; -- -- if Method = Draw_Bivector_Parallelogram and then -- Method = Draw_Bivector_Parallelogram_No_Vectors then -- MVP_Matrix := Maths.Scaling_Matrix ((Scale_S, Scale_S, Scale_S)) * MVP_Matrix; -- else -- E2_Norm := Multivectors.Norm_E2 (Multivectors.Outer_Product (Ortho_1, Ortho_2)); -- Scaled := GL.Types.Single (Scale * Float_Functions.Sqrt (pi / E2_Norm)); -- MVP_Matrix := Maths.Scaling_Matrix ((Scaled, Scaled, Scaled)) -- * MVP_Matrix; -- end if; -- -- Case Method is -- when Draw_Bivector_Circle | -- Draw_Bivector_Circle_Outline => -- Draw_Circle (Render_Program, MVP_Matrix, Palet_Type, Method); -- when others => null; -- end case; -- exception -- when others => -- Put_Line ("An exception occurred in Draw_Object.Draw_Bivector."); -- raise; -- end Draw_Bivector; -- ---------------------------------------------------------------------- -- procedure Draw_Multivector (Render_Program : GL.Objects.Programs.Program; -- Model_Matrix : GL.Types.Singles.Matrix4; -- MV : E2GA.Multivector; -- Colour : GL.Types.Colors.Color := (1.0, 1.0, 1.0, 1.0); -- Scale : GL.Types.Single) is -- -- L : boolean; -- Rotor_Step : float := 2.0 * Ada.Numerics.Pi / 64.0; -- -- X : float; -- -- Y : float; -- MVP_Matrix : Singles.Matrix4 := Singles.Identity4; -- Rotor : E2GA.Rotor; -- -- begin -- -- GL.Objects.Programs.Use_Program (Render_Program); -- Vertex_Array_Object.Initialize_Id; -- Vertex_Array_Object.Bind; -- -- if E3GA.Norm_E2 (MV).M_C1 = 0.0 then -- -- Maths.Translation_Matrix (Get_Coord_1 (Base), -- -- Get_Coord_2 (Base), Get_Coord_3 (Base)) * MVP_Matrix; -- -- end if; -- exception -- when others => -- Put_Line ("An exception occurred in Draw_Object.Draw_Multivector."); -- raise; -- end Draw_Multivector; -- ---------------------------------------------------------------------- procedure Draw_Circle (Palet_Type : Palet.Colour_Palet; Method : GA_Draw.Method_Type) is use GA_Maths; use GA_Maths.Float_Functions; use GL.Objects.Buffers; use Singles; use Palet; type Circle_Part is (Back_Part, Front_Part, Outline_Part); Vertex_Array : GL.Objects.Vertex_Arrays.Vertex_Array_Object; procedure Draw_Part (Part : Circle_Part) is Vertex_Buffer : GL.Objects.Buffers.Buffer; Normals_Buffer : GL.Objects.Buffers.Buffer; Num_Steps : constant int := 256; VB_Size : Int := Num_Steps; Angle : float := 0.0; Rotor_Step : constant float := 2.0 * Ada.Numerics.Pi / float (Num_Steps); Norm_Z : Single; Draw_Hooks : constant Boolean := Part = Outline_Part and Get_Draw_Mode.Orientation; begin Vertex_Array.Initialize_Id; Vertex_Array.Bind; Vertex_Buffer.Initialize_Id; Normals_Buffer.Initialize_Id; case Part is when Back_Part | Outline_Part => Norm_Z := 1.0; when Front_Part => Norm_Z := -1.0; end case; if Draw_Hooks then VB_Size := Num_Steps + 12; end if; declare Fan : Vector3_Array (1 .. VB_Size); Normal : Vector3_Array (1 .. VB_Size) := (others => (0.0, 0.0, 1.0)); Hooks : Vector3_Array (1 .. 2) := ((1.0, 0.0, 0.0), (1.0, -0.5, 0.0)); Hook_Rotation : constant Matrix3 := Rotation_Matrix (Maths.Radian (Ada.Numerics.Pi / 3.0), (0.0, 0.0, 1.0)); Hook_Index : Int := 1; begin for Count in 1 .. Num_Steps loop case Part is when Back_Part | Outline_Part => Fan (Count) := (Single (Cos (Angle)), Single (Sin (Angle)), 0.0); when Front_Part => Fan (Count) := (-Single (Cos (Angle)), Single (Sin (Angle)), 0.0); end case; Normal (Count) := (0.0, 0.0, Norm_Z); Angle := Angle + Rotor_Step; end loop; if Draw_Hooks then -- draw six 'hooks' along the edge of the circle while Hook_Index < 12 loop Fan (Num_Steps + Hook_Index) := Hooks (1); Fan (Num_Steps + Hook_Index + 1) := Hooks (2); Normal (Num_Steps + Hook_Index) := (0.0, 0.0, Norm_Z); Normal (Num_Steps + Hook_Index + 1) := (0.0, 0.0, Norm_Z); Hooks (1) := Hook_Rotation * Hooks (1); Hooks (2) := Hook_Rotation * Hooks (2); Hook_Index := Hook_Index + 2; end loop; end if; Vertex_Array.Bind; Array_Buffer.Bind (Vertex_Buffer); Utilities.Load_Vertex_Buffer (Array_Buffer, Fan, Static_Draw); Array_Buffer.Bind (Normals_Buffer); Utilities.Load_Vertex_Buffer (Array_Buffer, Normal, Static_Draw); GL.Attributes.Enable_Vertex_Attrib_Array (0); Array_Buffer.Bind (Vertex_Buffer); GL.Attributes.Set_Vertex_Attrib_Pointer (0, 3, Single_Type, 0, 0); GL.Attributes.Enable_Vertex_Attrib_Array (1); Array_Buffer.Bind (Normals_Buffer); GL.Attributes.Set_Vertex_Attrib_Pointer (1, 3, Single_Type, 0, 0); if Part = Back_Part or Part = Front_Part then if Part = Back_Part and then Get_Draw_Mode.Orientation then GL.Rasterization.Set_Polygon_Mode (GL.Rasterization.Line); end if; GL.Objects.Vertex_Arrays.Draw_Arrays (Mode => Triangle_Fan, First => 0, Count => VB_Size); else -- Outline part GL.Objects.Vertex_Arrays.Draw_Arrays (Mode => Line_Loop, First => 0, Count => Num_Steps); if Draw_Hooks then GL.Objects.Vertex_Arrays.Draw_Arrays (Mode => Lines, First => Num_Steps, Count => 12); end if; end if; GL.Attributes.Disable_Vertex_Attrib_Array (0); GL.Attributes.Disable_Vertex_Attrib_Array (1); end; -- declare block end Draw_Part; begin Shader_Manager.Set_Model_Matrix (Identity4); if (Method = Draw_Bivector_Circle) and then (Palet_Type = Is_Null or Palet.Foreground_Alpha (Palet_Type) > 0.0000001) then Draw_Part (Back_Part); Draw_Part (Front_Part); end if; if Palet_Type /= Is_Null then Set_Outline_Colour (Palet_Type); end if; Draw_Part (Outline_Part); exception when others => Put_Line ("An exception occurred in GA_Draw.Draw_Circle."); raise; end Draw_Circle; -- ------------------------------------------------------------------------ procedure Draw_Cone (Render_Program : GL.Objects.Programs.Program; Scale : Float) is use GL.Objects.Buffers; use GA_Maths.Float_Functions; Vertex_Array : GL.Objects.Vertex_Arrays.Vertex_Array_Object; Vertex_Buffer : GL.Objects.Buffers.Buffer; S_Scale : constant Single := Single (5.0 / Scale); Z : float := 0.0; Num_Steps : constant int := 256; Rotor_Step : constant float := 2.0 * Ada.Numerics.Pi / float (Num_Steps); Fan : Singles.Vector3_Array (1 .. Num_Steps); begin Vertex_Array.Initialize_Id; Vertex_Array.Bind; Vertex_Buffer.Initialize_Id; Fan (1) := (0.0, 0.0, 0.0); for Count in 2 .. Num_Steps loop Fan (Count) := (S_Scale * Single (Cos (Z)), S_Scale * Single (Sin (Z)), -0.25); Z := Z + Rotor_Step; end loop; Array_Buffer.Bind (Vertex_Buffer); Utilities.Load_Vertex_Buffer (Array_Buffer, Fan, Static_Draw); GL.Objects.Programs.Use_Program (Render_Program); -- Shader_Manager.Set_Model_Matrix (Model_Matrix); GL.Attributes.Enable_Vertex_Attrib_Array (0); GL.Attributes.Set_Vertex_Attrib_Pointer (0, 3, Single_Type, 0, 0); GL.Objects.Vertex_Arrays.Draw_Arrays (Mode => Triangle_Fan, First => 0, Count => Num_Steps); GL.Attributes.Disable_Vertex_Attrib_Array (0); exception when others => Put_Line ("An exception occurred in GA_Draw.Draw_Cone."); raise; end Draw_Cone; -- ------------------------------------------------------------------------ procedure Draw_Line (Render_Program : GL.Objects.Programs.Program; Direction : C3GA.Vector_E3; Weight : Float := 1.0) is use GL.Objects.Buffers; use GL.Types.Singles; use Shader_Manager; Vertex_Array : GL.Objects.Vertex_Arrays.Vertex_Array_Object; Vertex_Buffer : GL.Objects.Buffers.Buffer; -- Scale_Constant and Step_Size are used for building Line_Strip Scale_Constant : constant Single := Single (Palet.Line_Length); -- 6.0 Step_Size : constant Single := 0.1; Step_Length : constant Single := Scale_Constant * Step_Size; Num_Steps : constant Int := Int (2.0 / Step_Size + 0.5) + 1; Num_Vertices : constant Int := Num_Steps + 1; Length_Vertices : Singles.Vector3_Array (1 .. Num_Steps); C_Steps : constant Int := Int (1.0 / Step_Size + 0.5) + 1; C_Rotation_Matrix : Matrix4 := Identity4; Rotation_Matrix : Matrix4 := Identity4; Translation_Matrix : Matrix4 := Identity4; Scale_Matrix : Matrix4 := Maths.Scaling_Matrix (Single (Weight)); Model_Matrix : Matrix4 := Identity4; Z : Single := -Scale_Constant; C : Single := 0.0; Num_C_Vertices : constant Int := 3 * C_Steps + 1; C_Vertices : Singles.Vector3_Array (1 .. Num_C_Vertices); C_Index : Int := 0; C_Vertex1 : constant Singles.Vector3 := (-0.25, 0.0, -1.0); C_Vertex2 : constant Singles.Vector3 := (0.0, 0.0, 0.0); C_Vertex3 : constant Singles.Vector3 := (0.25, 0.0, -1.0); begin -- aPoint and Direction are model coordinates GL.Objects.Programs.Use_Program (Render_Program); -- Utilities.Print_Vector ("GA_Draw.Draw_Line aPoint", aPoint); -- Utilities.Print_Vector ("GA_Draw.Draw_Line Direction", Direction); for index in 1 .. Num_Steps loop Length_Vertices (index) := (0.0, 0.0, Z); Z := Z + Step_Length; end loop; Vertex_Array.Initialize_Id; Vertex_Array.Bind; Vertex_Buffer.Initialize_Id; Array_Buffer.Bind (Vertex_Buffer); Utilities.Load_Vertex_Buffer (Array_Buffer, Length_Vertices, Static_Draw); -- rotate e3 to line direction Rotation_Matrix := GA_Maths.Vector_Rotation_Matrix ((0.0, 0.0, 1.0), Direction); Set_Rotation_Matrix (Rotation_Matrix); Set_Translation_Matrix (Translation_Matrix); Model_Matrix := Scale_Matrix * Model_Matrix; -- translate to point on line -- Translation_Matrix := -- Maths.Translation_Matrix ((aPoint (GL.X), aPoint (GL.Y), aPoint (GL.Z))); -- Model_Matrix := Translation_Matrix * Model_Matrix; Set_Model_Matrix (Model_Matrix); GL.Attributes.Enable_Vertex_Attrib_Array (0); Array_Buffer.Bind (Vertex_Buffer); GL.Attributes.Set_Vertex_Attrib_Pointer (0, 3, Single_Type, 0, 0); GL.Objects.Vertex_Arrays.Draw_Arrays (Mode => Line_Strip, First => 0, Count => Num_Vertices); GL.Attributes.Disable_Vertex_Attrib_Array (0); if Palet.Get_Draw_Mode.Orientation then if Palet.Get_Draw_Mode.Magnitude then Scale_Matrix := Maths.Scaling_Matrix (Single (0.5 * Abs (Weight))); else Scale_Matrix := Maths.Scaling_Matrix (0.5); end if; Set_Model_Matrix (Scale_Matrix); Translation_Matrix := Maths.Translation_Matrix ((0.0, 0.0, -Scale_Constant)); while C < 1.0 loop C_Index := C_Index + 1; C_Vertices (C_Index) := C_Vertex1; C_Index := C_Index + 1; C_Vertices (C_Index) := C_Vertex2; C_Index := C_Index + 1; C_Vertices (C_Index) := C_Vertex3; C := C + Step_Size; Utilities.Load_Vertex_Buffer (Array_Buffer, C_Vertices, Static_Draw); Set_Rotation_Matrix (C_Rotation_Matrix); Set_Translation_Matrix (Translation_Matrix); GL.Attributes.Set_Vertex_Attrib_Pointer (0, 3, Single_Type, 0, 0); GL.Attributes.Enable_Vertex_Attrib_Array (0); GL.Objects.Vertex_Arrays.Draw_Arrays (Mode => Line_Strip, First => 0, Count => Num_C_Vertices); GL.Attributes.Disable_Vertex_Attrib_Array (0); C_Rotation_Matrix := Maths.Rotation_Matrix (Maths.Degree (90.0), (0.0, 0.0, 1.0)); Translation_Matrix := Maths.Translation_Matrix ((0.0, 0.0, 2.0 * Step_Length)); end loop; end if; exception when others => Put_Line ("An exception occurred in GA_Draw.Draw_Line."); raise; end Draw_Line; -- ------------------------------------------------------------------------ procedure Draw_Parallelepiped (Render_Program : GL.Objects.Programs.Program; Model_Matrix : GL.Types.Singles.Matrix4; MVC : Multivector_Analyze.E3_Vector_Array; Scale : Float; Method : Method_Type) is use GL.Objects.Buffers; use Singles; Vertex_Array : GL.Objects.Vertex_Arrays.Vertex_Array_Object; Vertex_Buffer : GL.Objects.Buffers.Buffer; Normals_Buffer : GL.Objects.Buffers.Buffer; Scale_Matrix : Matrix4; Scale_Sign : GL.Types.Single; Polygon : constant Ints.Vector4_Array (1 .. 6) := ((0, 1, 5, 4), (0, 4, 7, 3), (4, 5, 6, 7), (1, 2, 6, 5), (6, 2, 3, 7), (0, 3, 2, 1)); Vertex : Vector3_Array (1 .. 8) := (others => (others => 0.0)); GL_Vertices : Vector3_Array (1 .. 4) := (others => (others => 0.0)); aVertex : Vector3; Vertex_Vectors : constant Ints.Vector3_Array (1 .. 8) := ((-1, -1, -1), -- - (0, -1, -1), -- 0 (0, 1, -1), -- 0 + 1 (1, -1, -1), -- 1 (2, -1, -1), -- 2 (0, 2, -1), -- 0 + 2 (0, 1, 2), -- 0 + 1 + 2 (1, 2, -1)); -- 1 + 2 Vertex_Index : Int := 0; GL_Normals : Vector3_Array (1 .. 6) := (others => (others => 0.0)); V1 : E3GA.E3_Vector; V2 : E3GA.E3_Vector; V3 : E3GA.E3_Vector; Stride : constant Int := 0; begin Vertex_Array.Initialize_Id; Vertex_Array.Bind; -- for index in 1 .. MVC'Length loop -- VC (Int (index)) := E3GA.Get_Coords (MVC (index)); -- end loop; if Scale >= 0.0 then Scale_Sign := 1.0; else Scale_Sign := -1.0; end if; if Palet.Get_Draw_Mode.Orientation then Scale_Matrix := Maths.Scaling_Matrix (Scale_Sign); end if; for Row in Int range 1 .. 8 loop aVertex := (0.0, 0.0, 0.0); for Col in GL.Index_Homogeneous range GL.X .. GL.Z loop Vertex_Index := Vertex_Vectors (Row) (Col); if Vertex_Index >= 0 then aVertex := aVertex + MVC (Integer (Vertex_Index)); Vertex (Row) := aVertex; end if; end loop; end loop; for Index in GL_Normals'Range loop V1 := Vertex (Polygon (Index) (GL.X)); V2 := Vertex (Polygon (Index) (GL.Y)); V3 := Vertex (Polygon (Index) (GL.W)); GL_Normals (Index) := (Scale_Sign * E3GA.Outer_Product ((V2 - V1), (V3 - V1))); if Scale >= 0.0 then for GL_Index in Int range 1 .. 3 loop GL_Vertices (GL_Index) := Vertex (Polygon (Index) (GL.Index_Homogeneous'Enum_Val (GL_Index))); end loop; else for GL_Index in reverse Int range 3 .. 1 loop GL_Vertices (GL_Index) := Vertex (Polygon (Index) (GL.Index_Homogeneous'Enum_Val (GL_Index))); end loop; end if; end loop; Vertex_Buffer.Initialize_Id; Array_Buffer.Bind (Vertex_Buffer); Utilities.Load_Vertex_Buffer (Array_Buffer, GL_Vertices, Static_Draw); Normals_Buffer.Initialize_Id; Array_Buffer.Bind (Normals_Buffer); Utilities.Load_Vertex_Buffer (Array_Buffer, GL_Normals, Static_Draw); if Method = Draw_TV_Parellelepiped then Draw_Parallelepiped (Render_Program, Model_Matrix, MVC, Scale, Method); end if; GL.Objects.Programs.Use_Program (Render_Program); Shader_Manager.Set_Ambient_Colour ((1.0, 1.0, 1.0, 1.0)); Shader_Manager.Set_Model_Matrix (Scale_Matrix * Model_Matrix); GL.Attributes.Set_Vertex_Attrib_Pointer (0, 3, Single_Type, 0, 0); GL.Attributes.Enable_Vertex_Attrib_Array (0); GL.Attributes.Set_Vertex_Attrib_Pointer (1, 3, Single_Type, Stride, 0); GL.Objects.Vertex_Arrays.Draw_Arrays (Mode => Lines, First => 0, Count => 1 * 3); GL.Attributes.Disable_Vertex_Attrib_Array (0); GL.Attributes.Disable_Vertex_Attrib_Array (1); exception when others => Put_Line ("An exception occurred in GA_Draw.Draw_Parallelepiped."); raise; end Draw_Parallelepiped; -- ------------------------------------------------------------------------ -- Based on draw.cpp DrawState::drawSphere(e3ga::mv::Float normal) procedure Draw_Sphere (Render_Program : GL.Objects.Programs.Program; Normal : GL.Types.Single) is use Geosphere; Sphere : constant Geosphere.Geosphere := Palet.Current_Sphere; begin Count := Count + 1; Geosphere.New_Sphere_List (Sphere); -- gsDraw(m_sphere, 0.0f); Put_Line ("GA_Draw.Draw_Sphere calling GS_Draw Count : " & Integer'Image (Count)); Geosphere.GS_Draw (Render_Program, Sphere); if Normal = 0.0 then Draw_Sphere_List (Render_Program); else Geosphere.GS_Draw (Render_Program, Sphere, Normal); end if; exception when others => Put_Line ("An exception occurred in GA_Draw.Draw_Sphere."); raise; end Draw_Sphere; -- ------------------------------------------------------------------------ -- procedure Draw_Sphere (Render_Program : GL.Objects.Programs.Program; -- Translation_Matrix, Projection_Matrix : GL.Types.Singles.Matrix4; -- Normal : E3GA.Vector; Scale : float := 1.0; -- Colour : GL.Types.Colors.Color) is -- begin -- if G_Draw_State.Max_Vertices = 0 then -- Geosphere.GS_Compute (G_Draw_State.M_Sphere, 4); -- end if; -- exception -- when others => -- Put_Line ("An exception occurred in GA_Draw.Draw_Line."); -- raise; -- end Draw_Sphere; -- ------------------------------------------------------------------------ -- Based on draw.cpp drawTriVector procedure Draw_Trivector (Render_Program : GL.Objects.Programs.Program; Base : C3GA.Vector_E3; Scale : float := 1.0; Palet_Type : Palet.Colour_Palet; Method : Method_Type := Draw_TV_Sphere) is -- use GL.Types.Singles; -- use Ada.Numerics.Elementary_Functions; -- needed for fractional powers -- use GA_Maths; -- Vector_Base : constant Singles.Vector3 := (0.0, 0.0, 0.0); -- Scale_Sign : Float; -- P_Scale : Float; Normal : Single; -- Base_Coords : constant GA_Maths.Float_3D := C3GA.Get_Coords (Base); -- Translation : Singles.Vector3; -- MV_Matrix : Matrix4 := Identity4; begin -- if Scale >= 0.0 then -- Scale_Sign := 1.0; -- else -- Scale_Sign := -1.0; -- end if; if Method = Draw_TV_Parellelepiped or Method = Draw_TV_Parellelepiped_No_Vectors then Put_Line ("GA_Draw.Draw_Trivector, Draw_TV_Parellelepiped or Draw_TV_Parellelepiped_No_Vectors"); Draw_Trivector (Render_Program, Base, Scale, Palet_Type, Draw_TV_Sphere) ; -- P_Scale := Scale_Sign * ((Scale_Sign * Scale) ** 1.0 / 3.0); -- else -- P_Scale := Scale_Sign * ((Scale_Sign * Scale / (4.0 / 3.0 * GA_Maths.PI)) ** 1.0 / 3.0); end if; -- if C3GA.Norm_e2 (Base) /= 0.0 then -- Translation := (Single (Base_Coords (1)), Single (Base_Coords (2)), Single (Base_Coords (3))); -- MV_Matrix := Maths.Translation_Matrix (Translation) * MV_Matrix; -- end if; -- -- MV_Matrix := Maths.Scaling_Matrix (Single (P_Scale)) * MV_Matrix; case Method is when Draw_TV_Sphere => Put_Line ("GA_Draw.Draw_Trivector Draw_TV_Sphere."); if Palet.Get_Draw_Mode.Orientation then Normal := 0.1; else Normal := 0.0; end if; -- g_drawState.drawSphere (s) Draw_Sphere (Render_Program, Normal); when Draw_TV_Cross => Put_Line ("GA_Draw.Draw_Trivector Draw_TV_Cross."); null; when Draw_TV_Curly_Tail => Put_Line ("GA_Draw.Draw_Trivector Draw_TV_Curly_Tail."); null; when Draw_TV_Parellelepiped => Put_Line ("GA_Draw.Draw_Trivector Draw_TV_Parellelepiped."); -- Draw_Vector (Render_Program => Render_Program, -- Model_Matrix => MV_Matrix, -- Tail => Vector_Base, -- Direction => , -- Scale => ); when Draw_TV_Parellelepiped_No_Vectors => Put_Line ("GA_Draw.Draw_Trivector Draw_TV_Parellelepiped_No_Vectors."); -- Draw_Parallelepiped (Render_Program, MV_Matrix, V, Scale, -- Draw_TV_Parellelepiped_No_Vectors); when others => null; Put_Line ("GA_Draw.Draw_Trivector others."); end case; exception when others => Put_Line ("An exception occurred in GA_Draw.Draw_Trivector."); raise; end Draw_Trivector; -- ------------------------------------------------------------------------ procedure Draw_Trivector (Render_Program : GL.Objects.Programs.Program; Base : C3GA.Vector_E3; Scale : float := 1.0; V : Multivector_Analyze.E3_Vector_Array; -- Palet_Type : Palet.Colour_Palet; Method : Method_Type := Draw_TV_Sphere) is use GL.Types.Singles; use Ada.Numerics.Elementary_Functions; -- needed for fractional powers use GA_Maths; Scale_Sign : Float; P_Scale : Float; Normal : Single; Base_Coords : constant GA_Maths.Float_3D := C3GA.Get_Coords (Base); Translation : Singles.Vector3; MV_Matrix : Matrix4 := Identity4; begin if Scale >= 0.0 then Scale_Sign := 1.0; else Scale_Sign := -1.0; end if; if Method = Draw_TV_Parellelepiped or Method = Draw_TV_Parellelepiped_No_Vectors then Put_Line ("GA_Draw.Draw_Trivector, Draw_TV_Parellelepiped or Draw_TV_Parellelepiped_No_Vectors"); P_Scale := Scale_Sign * ((Scale_Sign * Scale) ** 1.0 / 3.0); else P_Scale := Scale_Sign * ((Scale_Sign * Scale / (4.0 / 3.0 * GA_Maths.PI)) ** 1.0 / 3.0); end if; if C3GA.Norm_e2 (Base) /= 0.0 then Translation := (Single (Base_Coords (1)), Single (Base_Coords (2)), Single (Base_Coords (3))); MV_Matrix := Maths.Translation_Matrix (Translation) * MV_Matrix; end if; MV_Matrix := Maths.Scaling_Matrix (Single (P_Scale)) * MV_Matrix; case Method is when Draw_TV_Sphere => Put_Line ("GA_Draw.Draw_Trivector Draw_TV_Sphere."); if Palet.Get_Draw_Mode.Orientation then Normal := 0.1; else Normal := 0.0; end if; -- g_drawState.drawSphere (s) Draw_Sphere (Render_Program, Normal); when Draw_TV_Cross => Put_Line ("GA_Draw.Draw_Trivector Draw_TV_Cross."); null; when Draw_TV_Curly_Tail => Put_Line ("GA_Draw.Draw_Trivector Draw_TV_Curly_Tail."); null; when Draw_TV_Parellelepiped => Put_Line ("GA_Draw.Draw_Trivector Draw_TV_Parellelepiped."); Draw_Parallelepiped (Render_Program, MV_Matrix, V, Scale, Draw_TV_Parellelepiped); when Draw_TV_Parellelepiped_No_Vectors => Put_Line ("GA_Draw.Draw_Trivector Draw_TV_Parellelepiped_No_Vectors."); -- Draw_Parallelepiped (Render_Program, MV_Matrix, V, Scale, -- Draw_TV_Parellelepiped_No_Vectors); when others => null; Put_Line ("GA_Draw.Draw_Trivector others."); end case; exception when others => Put_Line ("An exception occurred in GA_Draw.Draw_Trivector."); raise; end Draw_Trivector; -- ------------------------------------------------------------------------ procedure Draw_Vector (Render_Program : GL.Objects.Programs.Program; Tail, Direction : C3GA.Vector_E3; Scale : float := 1.0) is use GL.Culling; use GL.Toggles; use GL.Types.Singles; use Multivectors; use Maths.Single_Math_Functions; Vertex_Array_Object : GL.Objects.Vertex_Arrays.Vertex_Array_Object; MV_Matrix : Matrix4 := Identity4; Dir_Coords : constant GA_Maths.Float_3D := C3GA.Get_Coords (Direction); -- GL_Tail : constant Vector3 := GL_Util.To_GL (Tail); -- GL_Dir : constant Vector3 := GL_Util.To_GL (Direction); MV_Dir : constant Multivectors.M_Vector := New_Vector (Dir_Coords (1), Dir_Coords (2), Dir_Coords (3)); aRotor : Rotor; Saved_Cull_Face : constant Face_Selector := Cull_Face; Saved_Front_Face : constant GL.Types.Orientation := GL.Culling.Front_Face; begin if Scale /= 0.0 then Vertex_Array_Object.Initialize_Id; Vertex_Array_Object.Bind; GL.Objects.Programs.Use_Program (Render_Program); if C3GA.Norm_e2 (Tail) /= 0.0 then MV_Matrix := Maths.Translation_Matrix (Tail) * MV_Matrix; end if; MV_Matrix := Maths.Scaling_Matrix (Single (Scale)) * MV_Matrix; -- Draw the stick of the vector Draw_Line (Render_Program, (0.98 * Direction (GL.X), 0.98 * Direction (GL.Y), 0.98 * Direction (GL.Z)), Scale); -- Setup translation matrix for arrow head -- rotate e3 to vector direction MV_Matrix := Maths.Translation_Matrix (Direction) * MV_Matrix; aRotor := E3GA_Utilities.Rotor_Vector_To_Vector (Basis_Vector (Blade_Types.E3_e3), MV_Dir); if Scale > 1.2 then MV_Matrix := Maths.Scaling_Matrix (Single (1.2 / Scale)) * MV_Matrix; MV_Matrix := Maths.Scaling_Matrix (1.1 / Sqrt (Single (Scale))) * MV_Matrix; end if; GL_Util.Rotor_GL_Multiply (aRotor, MV_Matrix); if C3GA.Norm_e2 (Tail) /= 0.0 then MV_Matrix := Maths.Translation_Matrix (Tail) * MV_Matrix; end if; -- Translate to head of vector MV_Matrix := Maths.Translation_Matrix (Single (Scale) * Direction) * MV_Matrix; Shader_Manager.Set_Model_Matrix (MV_Matrix); Enable (Cull_Face); Set_Front_Face (GL.Types.Clockwise); Set_Cull_Face (Front); Draw_Cone (Render_Program, Scale); Draw_Base (Render_Program, Scale); Set_Front_Face (Saved_Front_Face); Set_Cull_Face (Saved_Cull_Face); end if; exception when others => Put_Line ("An exception occurred in GA_Draw.Draw_Vector."); raise; end Draw_Vector; -- ----------------------------------------------------------------------- end GA_Draw;
reznikmm/matreshka
Ada
4,003
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Style_Font_Name_Attributes; package Matreshka.ODF_Style.Font_Name_Attributes is type Style_Font_Name_Attribute_Node is new Matreshka.ODF_Style.Abstract_Style_Attribute_Node and ODF.DOM.Style_Font_Name_Attributes.ODF_Style_Font_Name_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Style_Font_Name_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Style_Font_Name_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Style.Font_Name_Attributes;
reznikmm/matreshka
Ada
6,761
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Chart.Wall_Elements is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Chart_Wall_Element_Node is begin return Self : Chart_Wall_Element_Node do Matreshka.ODF_Chart.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Chart_Prefix); end return; end Create; ---------------- -- Enter_Node -- ---------------- overriding procedure Enter_Node (Self : not null access Chart_Wall_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then ODF.DOM.Visitors.Abstract_ODF_Visitor'Class (Visitor).Enter_Chart_Wall (ODF.DOM.Chart_Wall_Elements.ODF_Chart_Wall_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Enter_Node (Visitor, Control); end if; end Enter_Node; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Chart_Wall_Element_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Wall_Element; end Get_Local_Name; ---------------- -- Leave_Node -- ---------------- overriding procedure Leave_Node (Self : not null access Chart_Wall_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then ODF.DOM.Visitors.Abstract_ODF_Visitor'Class (Visitor).Leave_Chart_Wall (ODF.DOM.Chart_Wall_Elements.ODF_Chart_Wall_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Leave_Node (Visitor, Control); end if; end Leave_Node; ---------------- -- Visit_Node -- ---------------- overriding procedure Visit_Node (Self : not null access Chart_Wall_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Iterator in ODF.DOM.Iterators.Abstract_ODF_Iterator'Class then ODF.DOM.Iterators.Abstract_ODF_Iterator'Class (Iterator).Visit_Chart_Wall (Visitor, ODF.DOM.Chart_Wall_Elements.ODF_Chart_Wall_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Visit_Node (Iterator, Visitor, Control); end if; end Visit_Node; begin Matreshka.DOM_Documents.Register_Element (Matreshka.ODF_String_Constants.Chart_URI, Matreshka.ODF_String_Constants.Wall_Element, Chart_Wall_Element_Node'Tag); end Matreshka.ODF_Chart.Wall_Elements;