| 1 | cycrow | 1 | #pragma once
 | 
        
           |  |  | 2 |   | 
        
           |  |  | 3 | using namespace System;
 | 
        
           |  |  | 4 | using namespace System::ComponentModel;
 | 
        
           |  |  | 5 | using namespace System::Collections;
 | 
        
           |  |  | 6 | using namespace System::Windows::Forms;
 | 
        
           |  |  | 7 | using namespace System::Data;
 | 
        
           |  |  | 8 | using namespace System::Drawing;
 | 
        
           |  |  | 9 |   | 
        
           |  |  | 10 | #include <spk.h>
 | 
        
           |  |  | 11 |   | 
        
           |  |  | 12 | namespace SpkExplorer {
 | 
        
           |  |  | 13 |   | 
        
           |  |  | 14 | 	/// <summary>
 | 
        
           |  |  | 15 | 	/// Summary for PackageInfo
 | 
        
           |  |  | 16 | 	///
 | 
        
           |  |  | 17 | 	/// WARNING: If you change the name of this class, you will need to change the
 | 
        
           |  |  | 18 | 	///          'Resource File Name' property for the managed resource compiler tool
 | 
        
           |  |  | 19 | 	///          associated with all .resx files this class depends on.  Otherwise,
 | 
        
           |  |  | 20 | 	///          the designers will not be able to interact properly with localized
 | 
        
           |  |  | 21 | 	///          resources associated with this form.
 | 
        
           |  |  | 22 | 	/// </summary>
 | 
        
           |  |  | 23 | 	public ref class PackageInfo : public System::Windows::Forms::Form
 | 
        
           |  |  | 24 | 	{
 | 
        
           |  |  | 25 | 	public:
 | 
        
           |  |  | 26 | 		PackageInfo(CBaseFile *p, int lang)
 | 
        
           |  |  | 27 | 		{
 | 
        
           |  |  | 28 | 			InitializeComponent();
 | 
        
           |  |  | 29 |   | 
        
           |  |  | 30 | 			m_pPackage = p;
 | 
        
           |  |  | 31 | 			m_iLang = lang;
 | 
        
           |  |  | 32 |   | 
        
           |  |  | 33 | 			if ( p )
 | 
        
           |  |  | 34 | 				this->UpdatePackage();
 | 
        
           |  |  | 35 | 			else
 | 
        
           |  |  | 36 | 				this->Close();
 | 
        
           |  |  | 37 | 		}
 | 
        
           |  |  | 38 |   | 
        
           |  |  | 39 | 	protected:
 | 
        
           |  |  | 40 | 		/// <summary>
 | 
        
           |  |  | 41 | 		/// Clean up any resources being used.
 | 
        
           |  |  | 42 | 		/// </summary>
 | 
        
           |  |  | 43 | 		~PackageInfo()
 | 
        
           |  |  | 44 | 		{
 | 
        
           |  |  | 45 | 			if (components)
 | 
        
           |  |  | 46 | 			{
 | 
        
           |  |  | 47 | 				delete components;
 | 
        
           |  |  | 48 | 			}
 | 
        
           |  |  | 49 | 		}
 | 
        
           |  |  | 50 |   | 
        
           |  |  | 51 | 		void UpdatePackage()
 | 
        
           |  |  | 52 | 		{
 | 
        
           |  |  | 53 | 			this->label2->Text = SystemStringFromCyString(m_pPackage->GetLanguageName(m_iLang));
 | 
        
           |  |  | 54 | 			this->label3->Text = SystemStringFromCyString(m_pPackage->GetAuthor());
 | 
        
           |  |  | 55 | 			this->label5->Text = SystemStringFromCyString(m_pPackage->GetVersion());
 | 
        
           |  |  | 56 | 			if ( m_pPackage->GetCreationDate().Empty() )
 | 
        
           |  |  | 57 | 				this->label7->Text = "(none)";
 | 
        
           |  |  | 58 | 			else
 | 
        
           |  |  | 59 | 				this->label7->Text = SystemStringFromCyString(m_pPackage->GetCreationDate());
 | 
        
           |  |  | 60 | 			if ( m_pPackage->GetDescription().Empty() )
 | 
        
           |  |  | 61 | 				this->label9->Text = "(no description)";
 | 
        
           |  |  | 62 | 			else
 | 
        
           |  |  | 63 | 				this->label9->Text = SystemStringFromCyString(m_pPackage->GetDescription().FindReplace("<br>", "\n").StripHTML());
 | 
        
           |  |  | 64 |   | 
        
           |  |  | 65 | 			if ( m_pPackage->GetType() == TYPE_SPK )
 | 
        
           |  |  | 66 | 			{
 | 
        
           |  |  | 67 | 				this->label11->Text = SystemStringFromCyString(((CSpkFile *)m_pPackage)->GetScriptTypeString(m_iLang));
 | 
        
           |  |  | 68 | 				switch ( m_pPackage->GetPluginType() )
 | 
        
           |  |  | 69 | 				{
 | 
        
           |  |  | 70 | 					case PLUGIN_NORMAL:
 | 
        
           |  |  | 71 | 						this->LabelPlugin->Text = "Normal";
 | 
        
           |  |  | 72 | 						break;
 | 
        
           |  |  | 73 | 					case PLUGIN_STABLE:
 | 
        
           |  |  | 74 | 						this->LabelPlugin->Text = "Stable";
 | 
        
           |  |  | 75 | 						break;
 | 
        
           |  |  | 76 | 					case PLUGIN_EXPERIMENTAL:
 | 
        
           |  |  | 77 | 						this->LabelPlugin->Text = "Experimental";
 | 
        
           |  |  | 78 | 						break;
 | 
        
           |  |  | 79 | 					case PLUGIN_CHEAT:
 | 
        
           |  |  | 80 | 						this->LabelPlugin->Text = "Cheat";
 | 
        
           |  |  | 81 | 						break;
 | 
        
           |  |  | 82 | 					case PLUGIN_MOD:
 | 
        
           |  |  | 83 | 						this->LabelPlugin->Text = "Mod";
 | 
        
           |  |  | 84 | 						break;
 | 
        
           |  |  | 85 | 				}
 | 
        
           |  |  | 86 | 			}
 | 
        
           |  |  | 87 | 			else if ( m_pPackage->GetType() == TYPE_XSP )
 | 
        
           |  |  | 88 | 			{
 | 
        
           |  |  | 89 | 				this->label11->Text = "Ship";
 | 
        
           |  |  | 90 | 				this->LabelPlugin->Text = "Ship";
 | 
        
           |  |  | 91 | 			}
 | 
        
           |  |  | 92 | 			else
 | 
        
           |  |  | 93 | 			{
 | 
        
           |  |  | 94 | 				this->label11->Text = "Generic Package";
 | 
        
           |  |  | 95 | 				this->LabelPlugin->Text = "";
 | 
        
           |  |  | 96 | 			}
 | 
        
           |  |  | 97 |   | 
        
           |  |  | 98 | 			CPackages p;
 | 
        
           |  |  | 99 | 			p.Startup("", "", "", "");
 | 
        
           |  |  | 100 |   | 
        
           |  |  | 101 | 			if ( !m_pPackage->AnyGameCompatability() )
 | 
        
           |  |  | 102 | 				this->label13->Text = "All X Games";
 | 
        
           |  |  | 103 | 			else 
 | 
        
           |  |  | 104 | 				this->label13->Text = SystemStringFromCyString(p.GetGameTypesString(m_pPackage, true));
 | 
        
           |  |  | 105 |   | 
        
           |  |  | 106 | 			if ( m_pPackage->IsSigned() )
 | 
        
           |  |  | 107 | 				this->panel11->Show();
 | 
        
           |  |  | 108 | 			else
 | 
        
           |  |  | 109 | 				this->panel11->Hide();
 | 
        
           |  |  | 110 | 		}
 | 
        
           |  |  | 111 |   | 
        
           |  |  | 112 | 		CBaseFile *m_pPackage;
 | 
        
           |  |  | 113 | 		int			m_iLang;
 | 
        
           |  |  | 114 |   | 
        
           |  |  | 115 | 	private: System::Windows::Forms::Label^  label1;
 | 
        
           |  |  | 116 | 	private: System::Windows::Forms::Panel^  panel1;
 | 
        
           |  |  | 117 | 	private: System::Windows::Forms::Label^  label2;
 | 
        
           |  |  | 118 | 	private: System::Windows::Forms::Panel^  panel2;
 | 
        
           |  |  | 119 | 	private: System::Windows::Forms::Panel^  panel5;
 | 
        
           |  |  | 120 | 	private: System::Windows::Forms::Label^  label7;
 | 
        
           |  |  | 121 | 	private: System::Windows::Forms::Label^  label8;
 | 
        
           |  |  | 122 | 	private: System::Windows::Forms::Panel^  panel4;
 | 
        
           |  |  | 123 | 	private: System::Windows::Forms::Label^  label5;
 | 
        
           |  |  | 124 | 	private: System::Windows::Forms::Label^  label6;
 | 
        
           |  |  | 125 | 	private: System::Windows::Forms::Panel^  panel3;
 | 
        
           |  |  | 126 | 	private: System::Windows::Forms::Label^  label3;
 | 
        
           |  |  | 127 | 	private: System::Windows::Forms::Label^  label4;
 | 
        
           |  |  | 128 | 	private: System::Windows::Forms::Button^  button1;
 | 
        
           |  |  | 129 | 	private: System::Windows::Forms::Panel^  panel6;
 | 
        
           |  |  | 130 | 	private: System::Windows::Forms::Panel^  panel7;
 | 
        
           |  |  | 131 | 	private: System::Windows::Forms::Label^  label9;
 | 
        
           |  |  | 132 | 	private: System::Windows::Forms::Label^  label10;
 | 
        
           |  |  | 133 | 	private: System::Windows::Forms::Panel^  panel8;
 | 
        
           |  |  | 134 | 	private: System::Windows::Forms::Label^  label11;
 | 
        
           |  |  | 135 | 	private: System::Windows::Forms::Label^  label12;
 | 
        
           |  |  | 136 | 	private: System::Windows::Forms::Panel^  panel9;
 | 
        
           |  |  | 137 | 	private: System::Windows::Forms::Label^  label13;
 | 
        
           |  |  | 138 | 	private: System::Windows::Forms::Label^  label14;
 | 
        
           |  |  | 139 | 	private: System::Windows::Forms::Panel^  panel10;
 | 
        
           |  |  | 140 | 	private: System::Windows::Forms::Label^  LabelPlugin;
 | 
        
           |  |  | 141 | 	private: System::Windows::Forms::Label^  label16;
 | 
        
           |  |  | 142 | 	private: System::Windows::Forms::Panel^  panel11;
 | 
        
           |  |  | 143 | 	private: System::Windows::Forms::Label^  label17;
 | 
        
           |  |  | 144 |   | 
        
           |  |  | 145 | 		/// <summary>
 | 
        
           |  |  | 146 | 		/// Required designer variable.
 | 
        
           |  |  | 147 | 		/// </summary>
 | 
        
           |  |  | 148 | 		System::ComponentModel::Container ^components;
 | 
        
           |  |  | 149 |   | 
        
           |  |  | 150 | #pragma region Windows Form Designer generated code
 | 
        
           |  |  | 151 | 		/// <summary>
 | 
        
           |  |  | 152 | 		/// Required method for Designer support - do not modify
 | 
        
           |  |  | 153 | 		/// the contents of this method with the code editor.
 | 
        
           |  |  | 154 | 		/// </summary>
 | 
        
           |  |  | 155 | 		void InitializeComponent(void)
 | 
        
           |  |  | 156 | 		{
 | 
        
           |  |  | 157 | 			this->label1 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 158 | 			this->panel1 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 159 | 			this->label2 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 160 | 			this->panel2 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 161 | 			this->panel9 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 162 | 			this->label13 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 163 | 			this->label14 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 164 | 			this->panel7 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 165 | 			this->label9 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 166 | 			this->label10 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 167 | 			this->panel10 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 168 | 			this->LabelPlugin = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 169 | 			this->label16 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 170 | 			this->panel8 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 171 | 			this->label11 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 172 | 			this->label12 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 173 | 			this->panel5 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 174 | 			this->label7 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 175 | 			this->label8 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 176 | 			this->panel4 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 177 | 			this->label5 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 178 | 			this->label6 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 179 | 			this->panel3 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 180 | 			this->label3 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 181 | 			this->label4 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 182 | 			this->button1 = (gcnew System::Windows::Forms::Button());
 | 
        
           |  |  | 183 | 			this->panel6 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 184 | 			this->panel11 = (gcnew System::Windows::Forms::Panel());
 | 
        
           |  |  | 185 | 			this->label17 = (gcnew System::Windows::Forms::Label());
 | 
        
           |  |  | 186 | 			this->panel1->SuspendLayout();
 | 
        
           |  |  | 187 | 			this->panel2->SuspendLayout();
 | 
        
           |  |  | 188 | 			this->panel9->SuspendLayout();
 | 
        
           |  |  | 189 | 			this->panel7->SuspendLayout();
 | 
        
           |  |  | 190 | 			this->panel10->SuspendLayout();
 | 
        
           |  |  | 191 | 			this->panel8->SuspendLayout();
 | 
        
           |  |  | 192 | 			this->panel5->SuspendLayout();
 | 
        
           |  |  | 193 | 			this->panel4->SuspendLayout();
 | 
        
           |  |  | 194 | 			this->panel3->SuspendLayout();
 | 
        
           |  |  | 195 | 			this->panel6->SuspendLayout();
 | 
        
           |  |  | 196 | 			this->panel11->SuspendLayout();
 | 
        
           |  |  | 197 | 			this->SuspendLayout();
 | 
        
           |  |  | 198 | 			// 
 | 
        
           |  |  | 199 | 			// label1
 | 
        
           |  |  | 200 | 			// 
 | 
        
           |  |  | 201 | 			this->label1->Dock = System::Windows::Forms::DockStyle::Left;
 | 
        
           |  |  | 202 | 			this->label1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 203 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 204 | 			this->label1->Location = System::Drawing::Point(0, 5);
 | 
        
           |  |  | 205 | 			this->label1->Name = L"label1";
 | 
        
           |  |  | 206 | 			this->label1->Size = System::Drawing::Size(139, 18);
 | 
        
           |  |  | 207 | 			this->label1->TabIndex = 0;
 | 
        
           |  |  | 208 | 			this->label1->Text = L"Package Name";
 | 
        
           |  |  | 209 | 			this->label1->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 210 | 			// 
 | 
        
           |  |  | 211 | 			// panel1
 | 
        
           |  |  | 212 | 			// 
 | 
        
           |  |  | 213 | 			this->panel1->Controls->Add(this->label2);
 | 
        
           |  |  | 214 | 			this->panel1->Controls->Add(this->label1);
 | 
        
           |  |  | 215 | 			this->panel1->Dock = System::Windows::Forms::DockStyle::Top;
 | 
        
           |  |  | 216 | 			this->panel1->Location = System::Drawing::Point(10, 10);
 | 
        
           |  |  | 217 | 			this->panel1->Name = L"panel1";
 | 
        
           |  |  | 218 | 			this->panel1->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
 | 
        
           |  |  | 219 | 			this->panel1->Size = System::Drawing::Size(465, 28);
 | 
        
           |  |  | 220 | 			this->panel1->TabIndex = 1;
 | 
        
           |  |  | 221 | 			// 
 | 
        
           |  |  | 222 | 			// label2
 | 
        
           |  |  | 223 | 			// 
 | 
        
           |  |  | 224 | 			this->label2->Dock = System::Windows::Forms::DockStyle::Fill;
 | 
        
           |  |  | 225 | 			this->label2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 226 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 227 | 			this->label2->Location = System::Drawing::Point(139, 5);
 | 
        
           |  |  | 228 | 			this->label2->Name = L"label2";
 | 
        
           |  |  | 229 | 			this->label2->Size = System::Drawing::Size(326, 18);
 | 
        
           |  |  | 230 | 			this->label2->TabIndex = 1;
 | 
        
           |  |  | 231 | 			this->label2->Text = L"label2";
 | 
        
           |  |  | 232 | 			this->label2->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 233 | 			// 
 | 
        
           |  |  | 234 | 			// panel2
 | 
        
           |  |  | 235 | 			// 
 | 
        
           |  |  | 236 | 			this->panel2->BorderStyle = System::Windows::Forms::BorderStyle::Fixed3D;
 | 
        
           |  |  | 237 | 			this->panel2->Controls->Add(this->panel11);
 | 
        
           |  |  | 238 | 			this->panel2->Controls->Add(this->panel9);
 | 
        
           |  |  | 239 | 			this->panel2->Controls->Add(this->panel7);
 | 
        
           |  |  | 240 | 			this->panel2->Controls->Add(this->panel10);
 | 
        
           |  |  | 241 | 			this->panel2->Controls->Add(this->panel8);
 | 
        
           |  |  | 242 | 			this->panel2->Controls->Add(this->panel5);
 | 
        
           |  |  | 243 | 			this->panel2->Controls->Add(this->panel4);
 | 
        
           |  |  | 244 | 			this->panel2->Controls->Add(this->panel3);
 | 
        
           |  |  | 245 | 			this->panel2->Controls->Add(this->panel1);
 | 
        
           |  |  | 246 | 			this->panel2->Dock = System::Windows::Forms::DockStyle::Fill;
 | 
        
           |  |  | 247 | 			this->panel2->Location = System::Drawing::Point(0, 0);
 | 
        
           |  |  | 248 | 			this->panel2->Name = L"panel2";
 | 
        
           |  |  | 249 | 			this->panel2->Padding = System::Windows::Forms::Padding(10);
 | 
        
           |  |  | 250 | 			this->panel2->Size = System::Drawing::Size(489, 331);
 | 
        
           |  |  | 251 | 			this->panel2->TabIndex = 2;
 | 
        
           |  |  | 252 | 			// 
 | 
        
           |  |  | 253 | 			// panel9
 | 
        
           |  |  | 254 | 			// 
 | 
        
           |  |  | 255 | 			this->panel9->Controls->Add(this->label13);
 | 
        
           |  |  | 256 | 			this->panel9->Controls->Add(this->label14);
 | 
        
           |  |  | 257 | 			this->panel9->Dock = System::Windows::Forms::DockStyle::Top;
 | 
        
           |  |  | 258 | 			this->panel9->Location = System::Drawing::Point(10, 261);
 | 
        
           |  |  | 259 | 			this->panel9->Name = L"panel9";
 | 
        
           |  |  | 260 | 			this->panel9->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
 | 
        
           |  |  | 261 | 			this->panel9->Size = System::Drawing::Size(465, 28);
 | 
        
           |  |  | 262 | 			this->panel9->TabIndex = 7;
 | 
        
           |  |  | 263 | 			// 
 | 
        
           |  |  | 264 | 			// label13
 | 
        
           |  |  | 265 | 			// 
 | 
        
           |  |  | 266 | 			this->label13->Dock = System::Windows::Forms::DockStyle::Fill;
 | 
        
           |  |  | 267 | 			this->label13->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 268 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 269 | 			this->label13->Location = System::Drawing::Point(139, 5);
 | 
        
           |  |  | 270 | 			this->label13->Name = L"label13";
 | 
        
           |  |  | 271 | 			this->label13->Size = System::Drawing::Size(326, 18);
 | 
        
           |  |  | 272 | 			this->label13->TabIndex = 1;
 | 
        
           |  |  | 273 | 			this->label13->Text = L"label13";
 | 
        
           |  |  | 274 | 			this->label13->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 275 | 			// 
 | 
        
           |  |  | 276 | 			// label14
 | 
        
           |  |  | 277 | 			// 
 | 
        
           |  |  | 278 | 			this->label14->Dock = System::Windows::Forms::DockStyle::Left;
 | 
        
           |  |  | 279 | 			this->label14->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 280 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 281 | 			this->label14->Location = System::Drawing::Point(0, 5);
 | 
        
           |  |  | 282 | 			this->label14->Name = L"label14";
 | 
        
           |  |  | 283 | 			this->label14->Size = System::Drawing::Size(139, 18);
 | 
        
           |  |  | 284 | 			this->label14->TabIndex = 0;
 | 
        
           |  |  | 285 | 			this->label14->Text = L"Game Requied";
 | 
        
           |  |  | 286 | 			this->label14->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 287 | 			// 
 | 
        
           |  |  | 288 | 			// panel7
 | 
        
           |  |  | 289 | 			// 
 | 
        
           |  |  | 290 | 			this->panel7->Controls->Add(this->label9);
 | 
        
           |  |  | 291 | 			this->panel7->Controls->Add(this->label10);
 | 
        
           |  |  | 292 | 			this->panel7->Dock = System::Windows::Forms::DockStyle::Top;
 | 
        
           |  |  | 293 | 			this->panel7->Location = System::Drawing::Point(10, 179);
 | 
        
           |  |  | 294 | 			this->panel7->Name = L"panel7";
 | 
        
           |  |  | 295 | 			this->panel7->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
 | 
        
           |  |  | 296 | 			this->panel7->Size = System::Drawing::Size(465, 82);
 | 
        
           |  |  | 297 | 			this->panel7->TabIndex = 5;
 | 
        
           |  |  | 298 | 			// 
 | 
        
           |  |  | 299 | 			// label9
 | 
        
           |  |  | 300 | 			// 
 | 
        
           |  |  | 301 | 			this->label9->Dock = System::Windows::Forms::DockStyle::Fill;
 | 
        
           |  |  | 302 | 			this->label9->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 303 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 304 | 			this->label9->Location = System::Drawing::Point(139, 5);
 | 
        
           |  |  | 305 | 			this->label9->Name = L"label9";
 | 
        
           |  |  | 306 | 			this->label9->Size = System::Drawing::Size(326, 72);
 | 
        
           |  |  | 307 | 			this->label9->TabIndex = 1;
 | 
        
           |  |  | 308 | 			this->label9->Text = L"label9";
 | 
        
           |  |  | 309 | 			this->label9->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 310 | 			// 
 | 
        
           |  |  | 311 | 			// label10
 | 
        
           |  |  | 312 | 			// 
 | 
        
           |  |  | 313 | 			this->label10->Dock = System::Windows::Forms::DockStyle::Left;
 | 
        
           |  |  | 314 | 			this->label10->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 315 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 316 | 			this->label10->Location = System::Drawing::Point(0, 5);
 | 
        
           |  |  | 317 | 			this->label10->Name = L"label10";
 | 
        
           |  |  | 318 | 			this->label10->Size = System::Drawing::Size(139, 72);
 | 
        
           |  |  | 319 | 			this->label10->TabIndex = 0;
 | 
        
           |  |  | 320 | 			this->label10->Text = L"Description";
 | 
        
           |  |  | 321 | 			this->label10->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 322 | 			// 
 | 
        
           |  |  | 323 | 			// panel10
 | 
        
           |  |  | 324 | 			// 
 | 
        
           |  |  | 325 | 			this->panel10->Controls->Add(this->LabelPlugin);
 | 
        
           |  |  | 326 | 			this->panel10->Controls->Add(this->label16);
 | 
        
           |  |  | 327 | 			this->panel10->Dock = System::Windows::Forms::DockStyle::Top;
 | 
        
           |  |  | 328 | 			this->panel10->Location = System::Drawing::Point(10, 151);
 | 
        
           |  |  | 329 | 			this->panel10->Name = L"panel10";
 | 
        
           |  |  | 330 | 			this->panel10->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
 | 
        
           |  |  | 331 | 			this->panel10->Size = System::Drawing::Size(465, 28);
 | 
        
           |  |  | 332 | 			this->panel10->TabIndex = 8;
 | 
        
           |  |  | 333 | 			// 
 | 
        
           |  |  | 334 | 			// LabelPlugin
 | 
        
           |  |  | 335 | 			// 
 | 
        
           |  |  | 336 | 			this->LabelPlugin->Dock = System::Windows::Forms::DockStyle::Fill;
 | 
        
           |  |  | 337 | 			this->LabelPlugin->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 338 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 339 | 			this->LabelPlugin->Location = System::Drawing::Point(139, 5);
 | 
        
           |  |  | 340 | 			this->LabelPlugin->Name = L"LabelPlugin";
 | 
        
           |  |  | 341 | 			this->LabelPlugin->Size = System::Drawing::Size(326, 18);
 | 
        
           |  |  | 342 | 			this->LabelPlugin->TabIndex = 1;
 | 
        
           |  |  | 343 | 			this->LabelPlugin->Text = L"label15";
 | 
        
           |  |  | 344 | 			this->LabelPlugin->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 345 | 			// 
 | 
        
           |  |  | 346 | 			// label16
 | 
        
           |  |  | 347 | 			// 
 | 
        
           |  |  | 348 | 			this->label16->Dock = System::Windows::Forms::DockStyle::Left;
 | 
        
           |  |  | 349 | 			this->label16->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 350 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 351 | 			this->label16->Location = System::Drawing::Point(0, 5);
 | 
        
           |  |  | 352 | 			this->label16->Name = L"label16";
 | 
        
           |  |  | 353 | 			this->label16->Size = System::Drawing::Size(139, 18);
 | 
        
           |  |  | 354 | 			this->label16->TabIndex = 0;
 | 
        
           |  |  | 355 | 			this->label16->Text = L"Plugin Type";
 | 
        
           |  |  | 356 | 			this->label16->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 357 | 			// 
 | 
        
           |  |  | 358 | 			// panel8
 | 
        
           |  |  | 359 | 			// 
 | 
        
           |  |  | 360 | 			this->panel8->Controls->Add(this->label11);
 | 
        
           |  |  | 361 | 			this->panel8->Controls->Add(this->label12);
 | 
        
           |  |  | 362 | 			this->panel8->Dock = System::Windows::Forms::DockStyle::Top;
 | 
        
           |  |  | 363 | 			this->panel8->Location = System::Drawing::Point(10, 123);
 | 
        
           |  |  | 364 | 			this->panel8->Name = L"panel8";
 | 
        
           |  |  | 365 | 			this->panel8->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
 | 
        
           |  |  | 366 | 			this->panel8->Size = System::Drawing::Size(465, 28);
 | 
        
           |  |  | 367 | 			this->panel8->TabIndex = 6;
 | 
        
           |  |  | 368 | 			// 
 | 
        
           |  |  | 369 | 			// label11
 | 
        
           |  |  | 370 | 			// 
 | 
        
           |  |  | 371 | 			this->label11->Dock = System::Windows::Forms::DockStyle::Fill;
 | 
        
           |  |  | 372 | 			this->label11->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 373 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 374 | 			this->label11->Location = System::Drawing::Point(139, 5);
 | 
        
           |  |  | 375 | 			this->label11->Name = L"label11";
 | 
        
           |  |  | 376 | 			this->label11->Size = System::Drawing::Size(326, 18);
 | 
        
           |  |  | 377 | 			this->label11->TabIndex = 1;
 | 
        
           |  |  | 378 | 			this->label11->Text = L"label11";
 | 
        
           |  |  | 379 | 			this->label11->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 380 | 			// 
 | 
        
           |  |  | 381 | 			// label12
 | 
        
           |  |  | 382 | 			// 
 | 
        
           |  |  | 383 | 			this->label12->Dock = System::Windows::Forms::DockStyle::Left;
 | 
        
           |  |  | 384 | 			this->label12->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 385 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 386 | 			this->label12->Location = System::Drawing::Point(0, 5);
 | 
        
           |  |  | 387 | 			this->label12->Name = L"label12";
 | 
        
           |  |  | 388 | 			this->label12->Size = System::Drawing::Size(139, 18);
 | 
        
           |  |  | 389 | 			this->label12->TabIndex = 0;
 | 
        
           |  |  | 390 | 			this->label12->Text = L"Package Type";
 | 
        
           |  |  | 391 | 			this->label12->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 392 | 			// 
 | 
        
           |  |  | 393 | 			// panel5
 | 
        
           |  |  | 394 | 			// 
 | 
        
           |  |  | 395 | 			this->panel5->Controls->Add(this->label7);
 | 
        
           |  |  | 396 | 			this->panel5->Controls->Add(this->label8);
 | 
        
           |  |  | 397 | 			this->panel5->Dock = System::Windows::Forms::DockStyle::Top;
 | 
        
           |  |  | 398 | 			this->panel5->Location = System::Drawing::Point(10, 95);
 | 
        
           |  |  | 399 | 			this->panel5->Name = L"panel5";
 | 
        
           |  |  | 400 | 			this->panel5->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
 | 
        
           |  |  | 401 | 			this->panel5->Size = System::Drawing::Size(465, 28);
 | 
        
           |  |  | 402 | 			this->panel5->TabIndex = 4;
 | 
        
           |  |  | 403 | 			// 
 | 
        
           |  |  | 404 | 			// label7
 | 
        
           |  |  | 405 | 			// 
 | 
        
           |  |  | 406 | 			this->label7->Dock = System::Windows::Forms::DockStyle::Fill;
 | 
        
           |  |  | 407 | 			this->label7->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 408 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 409 | 			this->label7->Location = System::Drawing::Point(139, 5);
 | 
        
           |  |  | 410 | 			this->label7->Name = L"label7";
 | 
        
           |  |  | 411 | 			this->label7->Size = System::Drawing::Size(326, 18);
 | 
        
           |  |  | 412 | 			this->label7->TabIndex = 1;
 | 
        
           |  |  | 413 | 			this->label7->Text = L"label7";
 | 
        
           |  |  | 414 | 			this->label7->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 415 | 			// 
 | 
        
           |  |  | 416 | 			// label8
 | 
        
           |  |  | 417 | 			// 
 | 
        
           |  |  | 418 | 			this->label8->Dock = System::Windows::Forms::DockStyle::Left;
 | 
        
           |  |  | 419 | 			this->label8->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 420 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 421 | 			this->label8->Location = System::Drawing::Point(0, 5);
 | 
        
           |  |  | 422 | 			this->label8->Name = L"label8";
 | 
        
           |  |  | 423 | 			this->label8->Size = System::Drawing::Size(139, 18);
 | 
        
           |  |  | 424 | 			this->label8->TabIndex = 0;
 | 
        
           |  |  | 425 | 			this->label8->Text = L"Creation Date";
 | 
        
           |  |  | 426 | 			this->label8->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 427 | 			// 
 | 
        
           |  |  | 428 | 			// panel4
 | 
        
           |  |  | 429 | 			// 
 | 
        
           |  |  | 430 | 			this->panel4->Controls->Add(this->label5);
 | 
        
           |  |  | 431 | 			this->panel4->Controls->Add(this->label6);
 | 
        
           |  |  | 432 | 			this->panel4->Dock = System::Windows::Forms::DockStyle::Top;
 | 
        
           |  |  | 433 | 			this->panel4->Location = System::Drawing::Point(10, 64);
 | 
        
           |  |  | 434 | 			this->panel4->Name = L"panel4";
 | 
        
           |  |  | 435 | 			this->panel4->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
 | 
        
           |  |  | 436 | 			this->panel4->Size = System::Drawing::Size(465, 31);
 | 
        
           |  |  | 437 | 			this->panel4->TabIndex = 3;
 | 
        
           |  |  | 438 | 			// 
 | 
        
           |  |  | 439 | 			// label5
 | 
        
           |  |  | 440 | 			// 
 | 
        
           |  |  | 441 | 			this->label5->Dock = System::Windows::Forms::DockStyle::Fill;
 | 
        
           |  |  | 442 | 			this->label5->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 443 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 444 | 			this->label5->Location = System::Drawing::Point(139, 5);
 | 
        
           |  |  | 445 | 			this->label5->Name = L"label5";
 | 
        
           |  |  | 446 | 			this->label5->Size = System::Drawing::Size(326, 21);
 | 
        
           |  |  | 447 | 			this->label5->TabIndex = 1;
 | 
        
           |  |  | 448 | 			this->label5->Text = L"label5";
 | 
        
           |  |  | 449 | 			this->label5->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 450 | 			// 
 | 
        
           |  |  | 451 | 			// label6
 | 
        
           |  |  | 452 | 			// 
 | 
        
           |  |  | 453 | 			this->label6->Dock = System::Windows::Forms::DockStyle::Left;
 | 
        
           |  |  | 454 | 			this->label6->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 455 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 456 | 			this->label6->Location = System::Drawing::Point(0, 5);
 | 
        
           |  |  | 457 | 			this->label6->Name = L"label6";
 | 
        
           |  |  | 458 | 			this->label6->Size = System::Drawing::Size(139, 21);
 | 
        
           |  |  | 459 | 			this->label6->TabIndex = 0;
 | 
        
           |  |  | 460 | 			this->label6->Text = L"Version";
 | 
        
           |  |  | 461 | 			this->label6->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 462 | 			// 
 | 
        
           |  |  | 463 | 			// panel3
 | 
        
           |  |  | 464 | 			// 
 | 
        
           |  |  | 465 | 			this->panel3->Controls->Add(this->label3);
 | 
        
           |  |  | 466 | 			this->panel3->Controls->Add(this->label4);
 | 
        
           |  |  | 467 | 			this->panel3->Dock = System::Windows::Forms::DockStyle::Top;
 | 
        
           |  |  | 468 | 			this->panel3->Location = System::Drawing::Point(10, 38);
 | 
        
           |  |  | 469 | 			this->panel3->Name = L"panel3";
 | 
        
           |  |  | 470 | 			this->panel3->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
 | 
        
           |  |  | 471 | 			this->panel3->Size = System::Drawing::Size(465, 26);
 | 
        
           |  |  | 472 | 			this->panel3->TabIndex = 2;
 | 
        
           |  |  | 473 | 			// 
 | 
        
           |  |  | 474 | 			// label3
 | 
        
           |  |  | 475 | 			// 
 | 
        
           |  |  | 476 | 			this->label3->Dock = System::Windows::Forms::DockStyle::Fill;
 | 
        
           |  |  | 477 | 			this->label3->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Italic, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 478 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 479 | 			this->label3->Location = System::Drawing::Point(139, 5);
 | 
        
           |  |  | 480 | 			this->label3->Name = L"label3";
 | 
        
           |  |  | 481 | 			this->label3->Size = System::Drawing::Size(326, 16);
 | 
        
           |  |  | 482 | 			this->label3->TabIndex = 1;
 | 
        
           |  |  | 483 | 			this->label3->Text = L"label3";
 | 
        
           |  |  | 484 | 			this->label3->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 485 | 			// 
 | 
        
           |  |  | 486 | 			// label4
 | 
        
           |  |  | 487 | 			// 
 | 
        
           |  |  | 488 | 			this->label4->Dock = System::Windows::Forms::DockStyle::Left;
 | 
        
           |  |  | 489 | 			this->label4->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 490 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 491 | 			this->label4->Location = System::Drawing::Point(0, 5);
 | 
        
           |  |  | 492 | 			this->label4->Name = L"label4";
 | 
        
           |  |  | 493 | 			this->label4->Size = System::Drawing::Size(139, 16);
 | 
        
           |  |  | 494 | 			this->label4->TabIndex = 0;
 | 
        
           |  |  | 495 | 			this->label4->Text = L"Package Author";
 | 
        
           |  |  | 496 | 			this->label4->TextAlign = System::Drawing::ContentAlignment::MiddleLeft;
 | 
        
           |  |  | 497 | 			// 
 | 
        
           |  |  | 498 | 			// button1
 | 
        
           |  |  | 499 | 			// 
 | 
        
           |  |  | 500 | 			this->button1->DialogResult = System::Windows::Forms::DialogResult::OK;
 | 
        
           |  |  | 501 | 			this->button1->Dock = System::Windows::Forms::DockStyle::Right;
 | 
        
           |  |  | 502 | 			this->button1->Location = System::Drawing::Point(387, 5);
 | 
        
           |  |  | 503 | 			this->button1->Name = L"button1";
 | 
        
           |  |  | 504 | 			this->button1->Size = System::Drawing::Size(97, 34);
 | 
        
           |  |  | 505 | 			this->button1->TabIndex = 5;
 | 
        
           |  |  | 506 | 			this->button1->Text = L"Close";
 | 
        
           |  |  | 507 | 			this->button1->UseVisualStyleBackColor = true;
 | 
        
           |  |  | 508 | 			// 
 | 
        
           |  |  | 509 | 			// panel6
 | 
        
           |  |  | 510 | 			// 
 | 
        
           |  |  | 511 | 			this->panel6->Controls->Add(this->button1);
 | 
        
           |  |  | 512 | 			this->panel6->Dock = System::Windows::Forms::DockStyle::Bottom;
 | 
        
           |  |  | 513 | 			this->panel6->Location = System::Drawing::Point(0, 331);
 | 
        
           |  |  | 514 | 			this->panel6->Name = L"panel6";
 | 
        
           |  |  | 515 | 			this->panel6->Padding = System::Windows::Forms::Padding(5);
 | 
        
           |  |  | 516 | 			this->panel6->Size = System::Drawing::Size(489, 44);
 | 
        
           |  |  | 517 | 			this->panel6->TabIndex = 4;
 | 
        
           |  |  | 518 | 			// 
 | 
        
           |  |  | 519 | 			// panel11
 | 
        
           |  |  | 520 | 			// 
 | 
        
           |  |  | 521 | 			this->panel11->Controls->Add(this->label17);
 | 
        
           |  |  | 522 | 			this->panel11->Dock = System::Windows::Forms::DockStyle::Top;
 | 
        
           |  |  | 523 | 			this->panel11->Location = System::Drawing::Point(10, 289);
 | 
        
           |  |  | 524 | 			this->panel11->Name = L"panel11";
 | 
        
           |  |  | 525 | 			this->panel11->Padding = System::Windows::Forms::Padding(0, 5, 0, 5);
 | 
        
           |  |  | 526 | 			this->panel11->Size = System::Drawing::Size(465, 28);
 | 
        
           |  |  | 527 | 			this->panel11->TabIndex = 9;
 | 
        
           |  |  | 528 | 			// 
 | 
        
           |  |  | 529 | 			// label17
 | 
        
           |  |  | 530 | 			// 
 | 
        
           |  |  | 531 | 			this->label17->Dock = System::Windows::Forms::DockStyle::Fill;
 | 
        
           |  |  | 532 | 			this->label17->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
 | 
        
           |  |  | 533 | 				static_cast<System::Byte>(0)));
 | 
        
           |  |  | 534 | 			this->label17->Location = System::Drawing::Point(0, 5);
 | 
        
           |  |  | 535 | 			this->label17->Name = L"label17";
 | 
        
           |  |  | 536 | 			this->label17->Size = System::Drawing::Size(465, 18);
 | 
        
           |  |  | 537 | 			this->label17->TabIndex = 0;
 | 
        
           |  |  | 538 | 			this->label17->Text = L"This Package is Signed";
 | 
        
           |  |  | 539 | 			this->label17->TextAlign = System::Drawing::ContentAlignment::MiddleCenter;
 | 
        
           |  |  | 540 | 			// 
 | 
        
           |  |  | 541 | 			// PackageInfo
 | 
        
           |  |  | 542 | 			// 
 | 
        
           |  |  | 543 | 			this->AcceptButton = this->button1;
 | 
        
           |  |  | 544 | 			this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
 | 
        
           |  |  | 545 | 			this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
 | 
        
           |  |  | 546 | 			this->ClientSize = System::Drawing::Size(489, 375);
 | 
        
           |  |  | 547 | 			this->Controls->Add(this->panel2);
 | 
        
           |  |  | 548 | 			this->Controls->Add(this->panel6);
 | 
        
           |  |  | 549 | 			this->Name = L"PackageInfo";
 | 
        
           |  |  | 550 | 			this->StartPosition = System::Windows::Forms::FormStartPosition::CenterParent;
 | 
        
           |  |  | 551 | 			this->Text = L"Package Info";
 | 
        
           |  |  | 552 | 			this->panel1->ResumeLayout(false);
 | 
        
           |  |  | 553 | 			this->panel2->ResumeLayout(false);
 | 
        
           |  |  | 554 | 			this->panel9->ResumeLayout(false);
 | 
        
           |  |  | 555 | 			this->panel7->ResumeLayout(false);
 | 
        
           |  |  | 556 | 			this->panel10->ResumeLayout(false);
 | 
        
           |  |  | 557 | 			this->panel8->ResumeLayout(false);
 | 
        
           |  |  | 558 | 			this->panel5->ResumeLayout(false);
 | 
        
           |  |  | 559 | 			this->panel4->ResumeLayout(false);
 | 
        
           |  |  | 560 | 			this->panel3->ResumeLayout(false);
 | 
        
           |  |  | 561 | 			this->panel6->ResumeLayout(false);
 | 
        
           |  |  | 562 | 			this->panel11->ResumeLayout(false);
 | 
        
           |  |  | 563 | 			this->ResumeLayout(false);
 | 
        
           |  |  | 564 |   | 
        
           |  |  | 565 | 		}
 | 
        
           |  |  | 566 | #pragma endregion
 | 
        
           |  |  | 567 | 	};
 | 
        
           |  |  | 568 | }
 |