diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..a4d6d9c602e02826888dd541c3f8ead63c9bfa00
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.vs/
\ No newline at end of file
diff --git a/Broker/Broker.sln b/Broker/Broker.sln
new file mode 100644
index 0000000000000000000000000000000000000000..99fe4d92681942463c0c14d2cd7d1d9b09d3ad91
--- /dev/null
+++ b/Broker/Broker.sln
@@ -0,0 +1,25 @@
+п»ї
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.9.34728.123
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Broker", "Broker\Broker.csproj", "{878FA1BC-E0B7-4E44-8A96-BBC8A39B78EA}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{878FA1BC-E0B7-4E44-8A96-BBC8A39B78EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{878FA1BC-E0B7-4E44-8A96-BBC8A39B78EA}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{878FA1BC-E0B7-4E44-8A96-BBC8A39B78EA}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{878FA1BC-E0B7-4E44-8A96-BBC8A39B78EA}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {93E8500E-DF4F-40CA-856C-CB9D77B21DF9}
+	EndGlobalSection
+EndGlobal
diff --git a/Broker/Broker/Broker.csproj b/Broker/Broker/Broker.csproj
new file mode 100644
index 0000000000000000000000000000000000000000..bddc63fb95cdb23b27e15d10583b0cff9ede29a1
--- /dev/null
+++ b/Broker/Broker/Broker.csproj
@@ -0,0 +1,14 @@
+п»ї<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFramework>net8.0</TargetFramework>
+    <ImplicitUsings>enable</ImplicitUsings>
+    <Nullable>enable</Nullable>
+  </PropertyGroup>
+
+  <ItemGroup>
+    <PackageReference Include="System.Security.Cryptography.ProtectedData" Version="9.0.2" />
+  </ItemGroup>
+
+</Project>
diff --git a/Broker/Broker/Program.cs b/Broker/Broker/Program.cs
new file mode 100644
index 0000000000000000000000000000000000000000..9477912c3b4816bdea3af58940130c0cd786d725
--- /dev/null
+++ b/Broker/Broker/Program.cs
@@ -0,0 +1,229 @@
+п»їnamespace HDLNoCGen
+{
+    static class Program
+    {
+        static void Main(string[] args)
+        {
+
+            string project_name = "";
+            string project_location = "";
+
+            bool project_open = false;
+            bool project_create = false;
+            bool project_erase = false;
+
+
+            string topology = "";
+            List<int> generators = new List<int>();
+            string queue_type = "";
+            string queue_position = "";
+            string arbiter_type = "";
+            string algorithm = "";
+
+            int info_width = 0;
+            int queue_length = 0;
+            bool create_verilog = false;
+
+            string device_name = "5CGXFC9E7F35C8";
+
+            string db_ip = "";
+            string db_username = "";
+            string db_password = "";
+            string db_name = "";
+            int db_port = 5432;
+
+            string quartus_path = "";
+
+            #region arguments
+
+            for (int i = 0; i < args.Length; i++)
+            {
+                switch (args[i])
+                {
+                    case "--project":
+                        bool project_breaker = false;
+                        while (!project_breaker)
+                        {
+                            switch (args[++i])
+                            {
+                                case "-n":
+                                case "--name":
+                                    project_name = args[++i];
+                                    break;
+                                case "-l":
+                                case "--location":
+                                    project_location = args[++i];
+                                    break;
+                                case "-o":
+                                case "--open":
+                                    project_open = true;
+                                    break;
+                                case "-c":
+                                case "--create":
+                                    project_create = true;
+                                    break;
+                                case "-e":
+                                case "--erase":
+                                    project_erase = true;
+                                    break;
+                                default:
+                                    i--;
+                                    project_breaker = true;
+                                    break;
+                            }
+                        }
+                        break;
+                    case "--graph":
+                        bool graph_breaker = false;
+
+                        while (!graph_breaker)
+                        {
+                            switch (args[++i])
+                            {
+                                case "c":
+                                    topology = "c";
+                                    break;
+                                case "m":
+                                    topology = "m";
+                                    break;
+                                case "t":
+                                    topology = "t";
+                                    break;
+                                case "--queue_type":
+                                    queue_type = args[++i];
+                                    break;
+                                case "--queue_position":
+                                    queue_position = args[++i];
+                                    break;
+                                case "--arbiter_type":
+                                    arbiter_type = args[++i];
+                                    break;
+                                case "--algorithm":
+                                    algorithm = args[++i];
+                                    break;
+                                case "--info_width":
+                                    try
+                                    {
+                                        info_width = Convert.ToInt32(args[++i]);
+                                    }
+                                    catch (Exception e)
+                                    {
+                                        Console.WriteLine("--info_width must be a number");
+                                    }
+                                    break;
+                                case "--queue_length":
+                                    try
+                                    {
+                                        queue_length = Convert.ToInt32(args[++i]);
+                                    }
+                                    catch (Exception e)
+                                    {
+                                        Console.WriteLine("--queue_lenght must be a number");
+                                    }
+                                    break;
+                                case "-v":
+                                case "--verilog":
+                                    create_verilog = true;
+                                    break;
+                                default:
+                                    try
+                                    {
+                                        generators.Add(Convert.ToInt32(args[i]));
+                                    }
+                                    catch (Exception e)
+                                    {
+                                        i--;
+                                        graph_breaker = true;
+                                    }
+                                    break;
+                            }
+                        }
+                        break;
+                    case "--quartus":
+                        switch (args[++i])
+                        {
+                            case "-d":
+                            case "--device":
+                                device_name = args[++i];
+                                break;
+                            default:
+                                i--;
+                                break;
+                        }
+                        break;
+                    case "--database":
+                        bool db_breaker = false;
+
+                        while (!db_breaker)
+                        {
+                            switch (args[++i])
+                            {
+                                case "-i":
+                                case "--ip":
+                                    db_ip = args[++i];
+                                    break;
+                                case "-u":
+                                case "--username":
+                                    db_username = args[++i];
+                                    break;
+                                case "--pass":
+                                case "--password":
+                                    db_password = args[++i];
+                                    break;
+                                case "-n":
+                                case "--name":
+                                    db_name = args[++i];
+                                    break;
+                                case "--port":
+                                    try
+                                    {
+                                        db_port = Convert.ToInt32(args[++i]);
+                                    }
+                                    catch (Exception e)
+                                    {
+                                        Console.WriteLine("--port must be a number");
+                                    }
+                                    break;
+                                default:
+                                    i--;
+                                    db_breaker = true;
+                                    break;
+                            }
+                        }
+                        break;
+                    case "--settings":
+                        bool settings_breaker = false;
+                        while (!settings_breaker)
+                        {
+                            if (i + 2 < args.Length)
+                            {
+                                switch (args[++i])
+                                {
+                                    case "--qp":
+                                    case "--quartus_path":
+                                        quartus_path = args[++i];
+                                        break;
+                                    default:
+                                        i--;
+                                        settings_breaker = true;
+                                        break;
+                                }
+                            }
+                            else
+                            {
+                                settings_breaker = true;
+                            }
+                        }
+                        break;
+                    default:
+                        Console.WriteLine($"Argument {args[i]} does not exist. Check the spelling or check graph generator numbers\n");
+                        break;
+                }
+            }
+
+            #endregion
+
+            Console.WriteLine(quartus_path);
+        }
+    }
+}
\ No newline at end of file
diff --git a/Broker/Broker/Properties/launchSettings.json b/Broker/Broker/Properties/launchSettings.json
new file mode 100644
index 0000000000000000000000000000000000000000..2fe8bcbaecbe0cf8569dab36f55994aefec26527
--- /dev/null
+++ b/Broker/Broker/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+  "profiles": {
+    "Broker": {
+      "commandName": "Project",
+      "commandLineArgs": "--project --name s --location sd --open --create --erase --graph c 3 5 --queue_type f --queue_position fj --arbiter_type sdfj --algorithm sdfjk --info_width sdf --queue_length sdf -v --quartus --device lkfjsdklf --database --ip fj --username klsdf --password lksdf --name dsjkf --port sdf --settings --quartus_path sdljkfsldfj"
+    }
+  }
+}
\ No newline at end of file
diff --git a/Broker/Broker/bin/Debug/net8.0/Broker.deps.json b/Broker/Broker/bin/Debug/net8.0/Broker.deps.json
new file mode 100644
index 0000000000000000000000000000000000000000..97547005c213e2482f56f0b4ede5f9a962189c3d
--- /dev/null
+++ b/Broker/Broker/bin/Debug/net8.0/Broker.deps.json
@@ -0,0 +1,41 @@
+{
+  "runtimeTarget": {
+    "name": ".NETCoreApp,Version=v8.0",
+    "signature": ""
+  },
+  "compilationOptions": {},
+  "targets": {
+    ".NETCoreApp,Version=v8.0": {
+      "Broker/1.0.0": {
+        "dependencies": {
+          "System.Security.Cryptography.ProtectedData": "9.0.2"
+        },
+        "runtime": {
+          "Broker.dll": {}
+        }
+      },
+      "System.Security.Cryptography.ProtectedData/9.0.2": {
+        "runtime": {
+          "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
+            "assemblyVersion": "9.0.0.0",
+            "fileVersion": "9.0.225.6610"
+          }
+        }
+      }
+    }
+  },
+  "libraries": {
+    "Broker/1.0.0": {
+      "type": "project",
+      "serviceable": false,
+      "sha512": ""
+    },
+    "System.Security.Cryptography.ProtectedData/9.0.2": {
+      "type": "package",
+      "serviceable": true,
+      "sha512": "sha512-+z9JWtU9di45tW/w6zpuJms4SnAAqKY2Usmmxs7MpOhxWoIeR2pKl1vEkaFbEx52ZfrMFcZXsFe+8WERMozzGg==",
+      "path": "system.security.cryptography.protecteddata/9.0.2",
+      "hashPath": "system.security.cryptography.protecteddata.9.0.2.nupkg.sha512"
+    }
+  }
+}
\ No newline at end of file
diff --git a/Broker/Broker/bin/Debug/net8.0/Broker.dll b/Broker/Broker/bin/Debug/net8.0/Broker.dll
new file mode 100644
index 0000000000000000000000000000000000000000..a8c74ce8ee866774345598e5d7f28b7016708d72
Binary files /dev/null and b/Broker/Broker/bin/Debug/net8.0/Broker.dll differ
diff --git a/Broker/Broker/bin/Debug/net8.0/Broker.exe b/Broker/Broker/bin/Debug/net8.0/Broker.exe
new file mode 100644
index 0000000000000000000000000000000000000000..a8af2ec7aa0b7407764f8a782fc12013f1843e77
Binary files /dev/null and b/Broker/Broker/bin/Debug/net8.0/Broker.exe differ
diff --git a/Broker/Broker/bin/Debug/net8.0/Broker.pdb b/Broker/Broker/bin/Debug/net8.0/Broker.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..aaae3ba7216221989b23c388e30cb67589044e15
Binary files /dev/null and b/Broker/Broker/bin/Debug/net8.0/Broker.pdb differ
diff --git a/Broker/Broker/bin/Debug/net8.0/Broker.runtimeconfig.json b/Broker/Broker/bin/Debug/net8.0/Broker.runtimeconfig.json
new file mode 100644
index 0000000000000000000000000000000000000000..becfaeac95a0a28c70ce619e835f5322a54d3426
--- /dev/null
+++ b/Broker/Broker/bin/Debug/net8.0/Broker.runtimeconfig.json
@@ -0,0 +1,12 @@
+{
+  "runtimeOptions": {
+    "tfm": "net8.0",
+    "framework": {
+      "name": "Microsoft.NETCore.App",
+      "version": "8.0.0"
+    },
+    "configProperties": {
+      "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+    }
+  }
+}
\ No newline at end of file
diff --git a/Broker/Broker/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll b/Broker/Broker/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 0000000000000000000000000000000000000000..c6bf370bf614bbd476d6aafe7d11e709a70123d5
Binary files /dev/null and b/Broker/Broker/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/Broker/Broker/obj/Broker.csproj.nuget.dgspec.json b/Broker/Broker/obj/Broker.csproj.nuget.dgspec.json
new file mode 100644
index 0000000000000000000000000000000000000000..b88c2a6d8625b324725c635d9bcc28c6348f89f5
--- /dev/null
+++ b/Broker/Broker/obj/Broker.csproj.nuget.dgspec.json
@@ -0,0 +1,74 @@
+{
+  "format": 1,
+  "restore": {
+    "D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj": {}
+  },
+  "projects": {
+    "D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj": {
+      "version": "1.0.0",
+      "restore": {
+        "projectUniqueName": "D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj",
+        "projectName": "Broker",
+        "projectPath": "D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj",
+        "packagesPath": "C:\\Users\\Serha\\.nuget\\packages\\",
+        "outputPath": "D:\\Project1718\\Microservice\\Broker\\Broker\\obj\\",
+        "projectStyle": "PackageReference",
+        "configFilePaths": [
+          "C:\\Users\\Serha\\AppData\\Roaming\\NuGet\\NuGet.Config",
+          "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+        ],
+        "originalTargetFrameworks": [
+          "net8.0"
+        ],
+        "sources": {
+          "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+          "https://api.nuget.org/v3/index.json": {}
+        },
+        "frameworks": {
+          "net8.0": {
+            "targetAlias": "net8.0",
+            "projectReferences": {}
+          }
+        },
+        "warningProperties": {
+          "warnAsError": [
+            "NU1605"
+          ]
+        },
+        "restoreAuditProperties": {
+          "enableAudit": "true",
+          "auditLevel": "low",
+          "auditMode": "direct"
+        }
+      },
+      "frameworks": {
+        "net8.0": {
+          "targetAlias": "net8.0",
+          "dependencies": {
+            "System.Security.Cryptography.ProtectedData": {
+              "target": "Package",
+              "version": "[9.0.2, )"
+            }
+          },
+          "imports": [
+            "net461",
+            "net462",
+            "net47",
+            "net471",
+            "net472",
+            "net48",
+            "net481"
+          ],
+          "assetTargetFallback": true,
+          "warn": true,
+          "frameworkReferences": {
+            "Microsoft.NETCore.App": {
+              "privateAssets": "all"
+            }
+          },
+          "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+        }
+      }
+    }
+  }
+}
\ No newline at end of file
diff --git a/Broker/Broker/obj/Broker.csproj.nuget.g.props b/Broker/Broker/obj/Broker.csproj.nuget.g.props
new file mode 100644
index 0000000000000000000000000000000000000000..ef676a34f7e983c4e60034c5eb0ca5abc44b0bc5
--- /dev/null
+++ b/Broker/Broker/obj/Broker.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+п»ї<?xml version="1.0" encoding="utf-8" standalone="no"?>
+<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
+    <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
+    <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
+    <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
+    <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
+    <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Serha\.nuget\packages\</NuGetPackageFolders>
+    <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
+    <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.2</NuGetToolVersion>
+  </PropertyGroup>
+  <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
+    <SourceRoot Include="C:\Users\Serha\.nuget\packages\" />
+  </ItemGroup>
+</Project>
\ No newline at end of file
diff --git a/Broker/Broker/obj/Broker.csproj.nuget.g.targets b/Broker/Broker/obj/Broker.csproj.nuget.g.targets
new file mode 100644
index 0000000000000000000000000000000000000000..3dc06ef3cc4057524bf5d2cd49936dff789cebe8
--- /dev/null
+++ b/Broker/Broker/obj/Broker.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+п»ї<?xml version="1.0" encoding="utf-8" standalone="no"?>
+<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
\ No newline at end of file
diff --git a/Broker/Broker/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Broker/Broker/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000000000000000000000000000000000000..2217181c88bdc64e587ffe6e9301b67e1d462aab
--- /dev/null
+++ b/Broker/Broker/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+// <autogenerated />
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.AssemblyInfo.cs b/Broker/Broker/obj/Debug/net8.0/Broker.AssemblyInfo.cs
new file mode 100644
index 0000000000000000000000000000000000000000..442b8d3eb4a7ec77c3d222d20f87efbe533b86a7
--- /dev/null
+++ b/Broker/Broker/obj/Debug/net8.0/Broker.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программой.
+//     Исполняемая версия:4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+//     повторной генерации кода.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Broker")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+36bd3217a4e6a661467f138ea6e903ae2ab690b6")]
+[assembly: System.Reflection.AssemblyProductAttribute("Broker")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Broker")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Создано классом WriteCodeFragment MSBuild.
+
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.AssemblyInfoInputs.cache b/Broker/Broker/obj/Debug/net8.0/Broker.AssemblyInfoInputs.cache
new file mode 100644
index 0000000000000000000000000000000000000000..46b2d949d8906196b5e9c7618da128320816d4e6
--- /dev/null
+++ b/Broker/Broker/obj/Debug/net8.0/Broker.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+164aa339aa5c02fff256d960be8c8a0193fc8384fd63fee486433b40d95b3a44
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.GeneratedMSBuildEditorConfig.editorconfig b/Broker/Broker/obj/Debug/net8.0/Broker.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000000000000000000000000000000000000..37dc9719e432210629b4fbe460bbc317a602d497
--- /dev/null
+++ b/Broker/Broker/obj/Debug/net8.0/Broker.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+is_global = true
+build_property.TargetFramework = net8.0
+build_property.TargetPlatformMinVersion = 
+build_property.UsingMicrosoftNETSdkWeb = 
+build_property.ProjectTypeGuids = 
+build_property.InvariantGlobalization = 
+build_property.PlatformNeutralAssembly = 
+build_property.EnforceExtendedAnalyzerRules = 
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Broker
+build_property.ProjectDir = D:\Project1718\Microservice\Broker\Broker\
+build_property.EnableComHosting = 
+build_property.EnableGeneratedComInterfaceComImportInterop = 
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.GlobalUsings.g.cs b/Broker/Broker/obj/Debug/net8.0/Broker.GlobalUsings.g.cs
new file mode 100644
index 0000000000000000000000000000000000000000..8578f3d03de56aa5afbb2e6a3f0a9055b075f7fd
--- /dev/null
+++ b/Broker/Broker/obj/Debug/net8.0/Broker.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+// <auto-generated/>
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.assets.cache b/Broker/Broker/obj/Debug/net8.0/Broker.assets.cache
new file mode 100644
index 0000000000000000000000000000000000000000..ea9e64be4f234bf2a9d449552aec5a0787da0645
Binary files /dev/null and b/Broker/Broker/obj/Debug/net8.0/Broker.assets.cache differ
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.csproj.AssemblyReference.cache b/Broker/Broker/obj/Debug/net8.0/Broker.csproj.AssemblyReference.cache
new file mode 100644
index 0000000000000000000000000000000000000000..bcaf0e28ed67a88ef0246f97777639f41247eb7b
Binary files /dev/null and b/Broker/Broker/obj/Debug/net8.0/Broker.csproj.AssemblyReference.cache differ
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.csproj.BuildWithSkipAnalyzers b/Broker/Broker/obj/Debug/net8.0/Broker.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.csproj.CoreCompileInputs.cache b/Broker/Broker/obj/Debug/net8.0/Broker.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000000000000000000000000000000000000..ff5c655df5c1af0a8335b110bfa4169513f2ef79
--- /dev/null
+++ b/Broker/Broker/obj/Debug/net8.0/Broker.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+2268fbc0f3d4fb065f215b39a98fbb0cd0056898b18e708fc082bd9064d22cda
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.csproj.FileListAbsolute.txt b/Broker/Broker/obj/Debug/net8.0/Broker.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e490504f679908467ef9caf5cc7706c4a8236c7f
--- /dev/null
+++ b/Broker/Broker/obj/Debug/net8.0/Broker.csproj.FileListAbsolute.txt
@@ -0,0 +1,17 @@
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\Broker.GeneratedMSBuildEditorConfig.editorconfig
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\Broker.AssemblyInfoInputs.cache
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\Broker.AssemblyInfo.cs
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\Broker.csproj.CoreCompileInputs.cache
+D:\Project1718\Microservice\Broker\Broker\bin\Debug\net8.0\Broker.exe
+D:\Project1718\Microservice\Broker\Broker\bin\Debug\net8.0\Broker.deps.json
+D:\Project1718\Microservice\Broker\Broker\bin\Debug\net8.0\Broker.runtimeconfig.json
+D:\Project1718\Microservice\Broker\Broker\bin\Debug\net8.0\Broker.dll
+D:\Project1718\Microservice\Broker\Broker\bin\Debug\net8.0\Broker.pdb
+D:\Project1718\Microservice\Broker\Broker\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\Broker.csproj.AssemblyReference.cache
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\Broker.csproj.Up2Date
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\Broker.dll
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\refint\Broker.dll
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\Broker.pdb
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\Broker.genruntimeconfig.cache
+D:\Project1718\Microservice\Broker\Broker\obj\Debug\net8.0\ref\Broker.dll
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.csproj.Up2Date b/Broker/Broker/obj/Debug/net8.0/Broker.csproj.Up2Date
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.dll b/Broker/Broker/obj/Debug/net8.0/Broker.dll
new file mode 100644
index 0000000000000000000000000000000000000000..a8c74ce8ee866774345598e5d7f28b7016708d72
Binary files /dev/null and b/Broker/Broker/obj/Debug/net8.0/Broker.dll differ
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.genruntimeconfig.cache b/Broker/Broker/obj/Debug/net8.0/Broker.genruntimeconfig.cache
new file mode 100644
index 0000000000000000000000000000000000000000..176ccf0f37f6e019b1210cb099a8dad0ae12b007
--- /dev/null
+++ b/Broker/Broker/obj/Debug/net8.0/Broker.genruntimeconfig.cache
@@ -0,0 +1 @@
+075564ef4b2b8979b1c1dbafc17c272d3bca40a444ccd911150dc3d2f860a238
diff --git a/Broker/Broker/obj/Debug/net8.0/Broker.pdb b/Broker/Broker/obj/Debug/net8.0/Broker.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..aaae3ba7216221989b23c388e30cb67589044e15
Binary files /dev/null and b/Broker/Broker/obj/Debug/net8.0/Broker.pdb differ
diff --git a/Broker/Broker/obj/Debug/net8.0/apphost.exe b/Broker/Broker/obj/Debug/net8.0/apphost.exe
new file mode 100644
index 0000000000000000000000000000000000000000..a8af2ec7aa0b7407764f8a782fc12013f1843e77
Binary files /dev/null and b/Broker/Broker/obj/Debug/net8.0/apphost.exe differ
diff --git a/Broker/Broker/obj/Debug/net8.0/ref/Broker.dll b/Broker/Broker/obj/Debug/net8.0/ref/Broker.dll
new file mode 100644
index 0000000000000000000000000000000000000000..1d7c7389d4a866994d9cb6d62f06a8e8f2d7ecde
Binary files /dev/null and b/Broker/Broker/obj/Debug/net8.0/ref/Broker.dll differ
diff --git a/Broker/Broker/obj/Debug/net8.0/refint/Broker.dll b/Broker/Broker/obj/Debug/net8.0/refint/Broker.dll
new file mode 100644
index 0000000000000000000000000000000000000000..1d7c7389d4a866994d9cb6d62f06a8e8f2d7ecde
Binary files /dev/null and b/Broker/Broker/obj/Debug/net8.0/refint/Broker.dll differ
diff --git a/Broker/Broker/obj/project.assets.json b/Broker/Broker/obj/project.assets.json
new file mode 100644
index 0000000000000000000000000000000000000000..edf8941911610cf54f3006df092302be0b442589
--- /dev/null
+++ b/Broker/Broker/obj/project.assets.json
@@ -0,0 +1,133 @@
+{
+  "version": 3,
+  "targets": {
+    "net8.0": {
+      "System.Security.Cryptography.ProtectedData/9.0.2": {
+        "type": "package",
+        "compile": {
+          "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
+            "related": ".xml"
+          }
+        },
+        "runtime": {
+          "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
+            "related": ".xml"
+          }
+        },
+        "build": {
+          "buildTransitive/net8.0/_._": {}
+        }
+      }
+    }
+  },
+  "libraries": {
+    "System.Security.Cryptography.ProtectedData/9.0.2": {
+      "sha512": "+z9JWtU9di45tW/w6zpuJms4SnAAqKY2Usmmxs7MpOhxWoIeR2pKl1vEkaFbEx52ZfrMFcZXsFe+8WERMozzGg==",
+      "type": "package",
+      "path": "system.security.cryptography.protecteddata/9.0.2",
+      "files": [
+        ".nupkg.metadata",
+        ".signature.p7s",
+        "Icon.png",
+        "LICENSE.TXT",
+        "PACKAGE.md",
+        "THIRD-PARTY-NOTICES.TXT",
+        "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
+        "buildTransitive/net462/_._",
+        "buildTransitive/net8.0/_._",
+        "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
+        "lib/MonoAndroid10/_._",
+        "lib/MonoTouch10/_._",
+        "lib/net462/System.Security.Cryptography.ProtectedData.dll",
+        "lib/net462/System.Security.Cryptography.ProtectedData.xml",
+        "lib/net8.0/System.Security.Cryptography.ProtectedData.dll",
+        "lib/net8.0/System.Security.Cryptography.ProtectedData.xml",
+        "lib/net9.0/System.Security.Cryptography.ProtectedData.dll",
+        "lib/net9.0/System.Security.Cryptography.ProtectedData.xml",
+        "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+        "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+        "lib/xamarinios10/_._",
+        "lib/xamarinmac20/_._",
+        "lib/xamarintvos10/_._",
+        "lib/xamarinwatchos10/_._",
+        "system.security.cryptography.protecteddata.9.0.2.nupkg.sha512",
+        "system.security.cryptography.protecteddata.nuspec",
+        "useSharedDesignerContext.txt"
+      ]
+    }
+  },
+  "projectFileDependencyGroups": {
+    "net8.0": [
+      "System.Security.Cryptography.ProtectedData >= 9.0.2"
+    ]
+  },
+  "packageFolders": {
+    "C:\\Users\\Serha\\.nuget\\packages\\": {}
+  },
+  "project": {
+    "version": "1.0.0",
+    "restore": {
+      "projectUniqueName": "D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj",
+      "projectName": "Broker",
+      "projectPath": "D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj",
+      "packagesPath": "C:\\Users\\Serha\\.nuget\\packages\\",
+      "outputPath": "D:\\Project1718\\Microservice\\Broker\\Broker\\obj\\",
+      "projectStyle": "PackageReference",
+      "configFilePaths": [
+        "C:\\Users\\Serha\\AppData\\Roaming\\NuGet\\NuGet.Config",
+        "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+      ],
+      "originalTargetFrameworks": [
+        "net8.0"
+      ],
+      "sources": {
+        "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+        "https://api.nuget.org/v3/index.json": {}
+      },
+      "frameworks": {
+        "net8.0": {
+          "targetAlias": "net8.0",
+          "projectReferences": {}
+        }
+      },
+      "warningProperties": {
+        "warnAsError": [
+          "NU1605"
+        ]
+      },
+      "restoreAuditProperties": {
+        "enableAudit": "true",
+        "auditLevel": "low",
+        "auditMode": "direct"
+      }
+    },
+    "frameworks": {
+      "net8.0": {
+        "targetAlias": "net8.0",
+        "dependencies": {
+          "System.Security.Cryptography.ProtectedData": {
+            "target": "Package",
+            "version": "[9.0.2, )"
+          }
+        },
+        "imports": [
+          "net461",
+          "net462",
+          "net47",
+          "net471",
+          "net472",
+          "net48",
+          "net481"
+        ],
+        "assetTargetFallback": true,
+        "warn": true,
+        "frameworkReferences": {
+          "Microsoft.NETCore.App": {
+            "privateAssets": "all"
+          }
+        },
+        "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+      }
+    }
+  }
+}
\ No newline at end of file
diff --git a/Broker/Broker/obj/project.nuget.cache b/Broker/Broker/obj/project.nuget.cache
new file mode 100644
index 0000000000000000000000000000000000000000..6b33461c361bf47ee51e2b500c5175a6f2c560ee
--- /dev/null
+++ b/Broker/Broker/obj/project.nuget.cache
@@ -0,0 +1,10 @@
+{
+  "version": 2,
+  "dgSpecHash": "P3KSF8a9VTg+aaGfoZBD2SjZOJjcc/+RljmEnndqlk7Fol2Y0OiYKVmcOb/oWAbd88GLl3niLh8DVxB1ZHpQkg==",
+  "success": true,
+  "projectFilePath": "D:\\Project1718\\Microservice\\Broker\\Broker\\Broker.csproj",
+  "expectedPackageFiles": [
+    "C:\\Users\\Serha\\.nuget\\packages\\system.security.cryptography.protecteddata\\9.0.2\\system.security.cryptography.protecteddata.9.0.2.nupkg.sha512"
+  ],
+  "logs": []
+}
\ No newline at end of file