commit fdcb41ea8ebf62289c04f40aa8999229d38dc64f Author: root Date: Fri Jun 21 01:18:29 2024 +0800 init diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..bb6bda7 --- /dev/null +++ b/Program.cs @@ -0,0 +1,491 @@ +using System; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Text; +using System.Threading.Tasks; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; + +class Program +{ + public static readonly int POST_CRAWLER_INTERVAL = 1; + public static readonly int REQUEST_GOD_INTERVAL = 10 * 1000; // 10 secs + public static readonly int TOKEN_UPDATER_INTERVAL = 10 * 1000; // 5 secs + private static readonly string bearerToken = "AAAAAAAAAAAAAAAAAAAAANw1uQEAAAAAe7iEwpMcF%2FjNUZ4WLxEHpax3Ywg%3D0PV1pvJB23a47hWAIwB09olQesVhsz9fPKLg8edP2cwC5D6YHW"; + private static readonly string searchUrl = "https://api.twitter.com/2/tweets/search/recent"; + + static async Task Main(string[] args) + { + StartPostCrawler(); + StartRequestGod(); + StartTokenCrawler(); + while (true) + { + await Task.Delay(1000); + } + } + + + static async void StartRequestGod() + { + string requestUrl = $"https://api.callfi.io/get_requests.php"; + + while (true) + { + using (HttpClient client = new HttpClient()) + { + HttpResponseMessage response = await client.GetAsync(requestUrl); + + if (response.IsSuccessStatusCode) + { + string jsonResponse = await response.Content.ReadAsStringAsync(); + JArray requests = JArray.Parse(jsonResponse); + + for (int i = 0; i < requests.Count; i++) + { + string reqType = (requests[i]["request_type"] ?? "").ToString(); + string reqId = requests[i]["id"].ToString(); + if (reqType == "twitter_id") + { + string userTag = requests[i]["request_data"].ToString(); + string userId = await GetTwitterId(userTag); + if (userId.Length > 0) + { + //Update twitter map + await AddTwitterTag(userTag, userId, reqId); + } + } + } + } + else + { + Console.WriteLine($"Request failed: {response.StatusCode} - {response.ReasonPhrase}"); + } + } + + await Task.Delay(REQUEST_GOD_INTERVAL); + } + } + + + static async Task GetTwitterId(string userTag) + { + string requestUrl = $"https://api.twitter.com/2/users/by/username/{userTag.Replace("@", "")}"; + + using (HttpClient client = new HttpClient()) + { + client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", bearerToken); + Console.WriteLine(requestUrl); + HttpResponseMessage response = await client.GetAsync(requestUrl); + + if (response.IsSuccessStatusCode) + { + string jsonResponse = await response.Content.ReadAsStringAsync(); + JObject userObj = JObject.Parse(jsonResponse); + return (userObj["data"]["id"] ?? "").ToString(); + } + else + { + Console.WriteLine($"Request failed id: {response.StatusCode} - {response.ReasonPhrase}"); + } + } + + return ""; + } + + static async Task AddTwitterTag(string userTag, string userId, string reqId) + { + + await CompleteRequest(reqId, userId); + string requestUrl = $"https://api.callfi.io/add_twitter_tag.php?userTag={userTag}&userId={userId}"; + + using (HttpClient client = new HttpClient()) + { + HttpResponseMessage response = await client.GetAsync(requestUrl); + + if (response.IsSuccessStatusCode) + { + string jsonResponse = await response.Content.ReadAsStringAsync(); + if (jsonResponse == "0") + { + //Done + } + } + else + { + Console.WriteLine($"Request failed twittTag: {response.StatusCode} - {response.ReasonPhrase}"); + } + } + } + + + static async Task CompleteRequest(string reqId, string remark) + { + string requestUrl = $"https://api.callfi.io/complete_request.php?id={reqId}&remarks={remark}"; + Console.WriteLine(requestUrl); + using (HttpClient client = new HttpClient()) + { + HttpResponseMessage response = await client.GetAsync(requestUrl); + + if (response.IsSuccessStatusCode) + { + string jsonResponse = await response.Content.ReadAsStringAsync(); + Console.WriteLine(jsonResponse); + if (jsonResponse == "0") + { + //Done + } + } + else + { + Console.WriteLine($"Request failed complete request: {response.StatusCode} - {response.ReasonPhrase}"); + } + } + } + //sk-proj-okUjDHtCh22PaAuFZgraT3BlbkFJRinfIM5NwbU0zffUVRFq + static bool kickstarted = false; + static async void StartPostCrawler() + { + string searchString = "CallFi"; + + string query = Uri.EscapeDataString(searchString); + + while (true) + { + DateTime now = DateTime.UtcNow; + DateTime startTime = now.AddMinutes(-POST_CRAWLER_INTERVAL * (kickstarted ? 1: 15)); + kickstarted =true; + + string startTimeStr = startTime.ToString("yyyy-MM-ddTHH:mm:ssZ"); + string endTimeStr = now.ToString("yyyy-MM-ddTHH:mm:ssZ"); + string requestUrl = $"{searchUrl}?query={query}&max_results=50&start_time={startTimeStr}&tweet.fields=author_id,created_at"; + using (HttpClient client = new HttpClient()) + { + client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", bearerToken); + HttpResponseMessage response = await client.GetAsync(requestUrl); + Console.WriteLine(requestUrl); + + if (response.IsSuccessStatusCode) + { + string jsonResponse = await response.Content.ReadAsStringAsync(); + JObject tweets = JObject.Parse(jsonResponse); + File.WriteAllText(AppDomain.CurrentDomain.BaseDirectory + $"/results_{DateTime.Now.Year}_{DateTime.Now.Month}_{DateTime.Now.Day}-{DateTime.Now.Hour}-{DateTime.Now.Minute}.txt", tweets.ToString()); + Console.WriteLine(tweets.ToString()); + try + { + JArray tweetsData = JArray.Parse(tweets["data"].ToString()); + + for (int i = 0; i < tweetsData.Count; i++) + { + string tweetId = tweetsData[i]["id"].ToString(); + string tweetText = tweetsData[i]["text"].ToString(); + string tweetAuthor = tweetsData[i]["author_id"].ToString(); + string created_at = tweetsData[i]["created_at"].ToString(); + + + string chatGPTResponse = await CalloutAskChatGPT(tweetText); + string[] data = chatGPTResponse.Split(','); + + string code = "unknown"; + string name = "unknown"; + if (data[0] == "yes") + { + code = data[1]; + name = (data.Length > 2) ? data[2] : "unknown"; + }else{ + //Check if participation tweet + string partChatGPTResponse = await ParticipationAskChatGPT(tweetText); + + if(partChatGPTResponse.ToLower().Contains("yes")){ + await Participation(tweetAuthor); + }else{ + Console.WriteLine($"Ignoring tweet {tweetText}"); + } + continue; + } + + await AddTweet(tweetId, created_at, tweetText, tweetAuthor, code, name); + } + } + catch + { + Console.WriteLine("None"); + } + } + else + { + Console.WriteLine($"Request failed Twitter fetch: {response.StatusCode} - {response.ReasonPhrase}"); + } + } + + await Task.Delay(POST_CRAWLER_INTERVAL * 60 * 1000); + } + } + + + static async Task AddTweet(string id, string createdAt, string text, string author, string tokenCode, string tokenName) + { + string requestUrl = $"https://api.callfi.io/add_tweet.php?tweet_id={id}&created_at={createdAt}&author_id={author}&text={Uri.EscapeDataString(text)}&token_code={Uri.EscapeDataString(tokenCode)}&token_name={Uri.EscapeDataString(tokenName)}"; + Console.WriteLine(requestUrl); + using (HttpClient client = new HttpClient()) + { + HttpResponseMessage response = await client.GetAsync(requestUrl); + + if (response.IsSuccessStatusCode) + { + string jsonResponse = await response.Content.ReadAsStringAsync(); + Console.WriteLine(jsonResponse); + if (jsonResponse == "0") + { + //Done + } + } + else + { + Console.WriteLine($"Request failed complete request: {response.StatusCode} - {response.ReasonPhrase}"); + } + } + } + + static async Task Participation(string author) + { + string requestUrl = $"https://api.callfi.io/participate.php?author_id={author}"; + Console.WriteLine(requestUrl); + using (HttpClient client = new HttpClient()) + { + HttpResponseMessage response = await client.GetAsync(requestUrl); + + if (response.IsSuccessStatusCode) + { + string jsonResponse = await response.Content.ReadAsStringAsync(); + Console.WriteLine(jsonResponse); + if (jsonResponse == "0") + { + //Done + } + } + else + { + Console.WriteLine($"Request failed complete request: {response.StatusCode} - {response.ReasonPhrase}"); + } + } + } + + static async void UpdateLeaderboard() + { + await UpdateTokens(); + + string requestUrl = "https://api.callfi.io/get_tweets.php"; + List Tokens = new List(); + using (HttpClient client = new HttpClient()) + { + HttpResponseMessage response = await client.GetAsync(requestUrl); + + if (response.IsSuccessStatusCode) + { + JArray jsonArr = JArray.Parse(await response.Content.ReadAsStringAsync()); + Dictionary TwitterHandles = new Dictionary(); + foreach(JObject tweet in jsonArr){ + string tokenId = tweet["tokenCode"].ToString().Replace(" ",""); + if(!Tokens.Contains(tokenId)){ + Tokens.Add(tokenId); + } + + string userId = tweet["author"].ToString().Replace(" ", ""); + if(!TwitterHandles.ContainsKey(userId)){ + HttpResponseMessage usernameResponse = await client.GetAsync("https://api.callfi.io/get_twitter_username.php?id="+userId); + string usernameTxt = await usernameResponse.Content.ReadAsStringAsync(); + + TwitterHandles.Add(userId, usernameTxt); + } + } + + + Dictionary TokenPrices = new Dictionary(); + foreach(string token in Tokens){ + try{ + HttpResponseMessage priceResponse = await client.GetAsync("https://api.callfi.io/get_token_price.php?id="+token); + string priceResponseTxt = await priceResponse.Content.ReadAsStringAsync(); + + decimal price = decimal.Parse(priceResponseTxt); + TokenPrices.Add(token,price); + }catch(Exception e){ + Console.WriteLine("Failed to get price of " + token); + } + } + Dictionary Leaderboard = new Dictionary(); + foreach(JObject tweet in jsonArr){ + string tokenId = tweet["tokenCode"].ToString().Replace(" ",""); + + decimal priceAtCreation = decimal.Parse(tweet["price_at_creation"].ToString()); + decimal priceDiff = TokenPrices[tokenId] - priceAtCreation; + decimal priceDiffPerc = priceDiff / priceAtCreation; + decimal pointsAdded= priceDiffPerc; + string userTag = TwitterHandles[tweet["author"].ToString()]; + if(!userTag.Contains("@")){continue;} + if(Leaderboard.ContainsKey(userTag)){ + Leaderboard[userTag] += pointsAdded; + }else{ + Leaderboard.Add(userTag, pointsAdded); + } + } + + List approvedUsers = await GetApprovedUsers(); + foreach(string approvedUser in approvedUsers){ + if(!Leaderboard.ContainsKey(approvedUser)){ + Leaderboard.Add(approvedUser,0); + } + } + + Console.WriteLine(JsonConvert.SerializeObject(Leaderboard)); + + foreach(KeyValuePair leaderboardItem in Leaderboard){ + + string setLeaderboardItemUrl = $"https://api.callfi.io/set_leaderboard_item.php?username={leaderboardItem.Key}&points={leaderboardItem.Value}"; + HttpResponseMessage priceResponse = await client.GetAsync(setLeaderboardItemUrl); + Console.WriteLine(setLeaderboardItemUrl); + string priceResponseTxt = await priceResponse.Content.ReadAsStringAsync(); + } + } + else + { + Console.WriteLine($"Request failed: {response.StatusCode} - {response.ReasonPhrase}"); + } + } + } + + static async Task> GetApprovedUsers(){ + string requestUrl = "https://api.callfi.io/get_approved_users.php"; + List output = new List(); + + using (HttpClient client = new HttpClient()) + { + HttpResponseMessage response = await client.GetAsync(requestUrl); + + if (response.IsSuccessStatusCode) + { + JArray usersJ = JArray.Parse(await response.Content.ReadAsStringAsync()); + for(int i=0;i < usersJ.Count; i++){ + output.Add(usersJ[i].ToString()); + } + } + else + { + Console.WriteLine($"Request failed: {response.StatusCode} - {response.ReasonPhrase}"); + } + } + + return output; + } + + static async Task CalloutAskChatGPT(string text) + { + string context = @"I'm gonna give you few tweets i copied from twitter, After I send you the tweet, You must respond with if the tweet is about a web3 token/coin and which token are they talking about. + +Response must be in following format. Also Ignore CallFi, CallingIt tags. +Whether its about a token/coin, token/coin, token/coin long name + +example responses: +yes, DOGE, Doge +yes, TWEP, The Web3 Project +yes, PEPE, Pepe Meme +yes, COC, Cocktailbar +no"; + + + HttpClient client = new HttpClient(); + var url = "https://api.openai.com/v1/chat/completions"; + var apiKey = "sk-proj-AUdPozaNLwzgZiFDty8HT3BlbkFJfJDONAwRJwfFmZ56nAZo"; + + var requestData = new + { + model = "gpt-3.5-turbo", + messages = new[] + { + new { role = "user", content = context }, + new {role = "user", content = text} + }, + temperature = 0.7 + }; + + var json = Newtonsoft.Json.JsonConvert.SerializeObject(requestData); + + var requestMessage = new HttpRequestMessage(HttpMethod.Post, url); + requestMessage.Headers.Add("Authorization", $"Bearer {apiKey}"); + requestMessage.Content = new StringContent(json, Encoding.UTF8, "application/json"); + + var response = await client.SendAsync(requestMessage); + var responseString = await response.Content.ReadAsStringAsync(); + JObject resposneJson = JObject.Parse(responseString); + string resContent = resposneJson["choices"][0]["message"]["content"].ToString(); + Console.WriteLine(resContent); + return resContent; + } + + + static async Task ParticipationAskChatGPT(string text) + { + string context = @"Check if next message im gonna send you, is a participation post for my platform which is called CallFi, a platform for calling out upcoming tokens, Simply respond 'yes' or 'no' if it is a participation tweet with a mention to the web link callfi.io"; + + + HttpClient client = new HttpClient(); + var url = "https://api.openai.com/v1/chat/completions"; + var apiKey = "sk-proj-AUdPozaNLwzgZiFDty8HT3BlbkFJfJDONAwRJwfFmZ56nAZo"; + + var requestData = new + { + model = "gpt-3.5-turbo", + messages = new[] + { + new { role = "user", content = context }, + new {role = "user", content = text} + }, + temperature = 0.7 + }; + + var json = Newtonsoft.Json.JsonConvert.SerializeObject(requestData); + + var requestMessage = new HttpRequestMessage(HttpMethod.Post, url); + requestMessage.Headers.Add("Authorization", $"Bearer {apiKey}"); + requestMessage.Content = new StringContent(json, Encoding.UTF8, "application/json"); + + var response = await client.SendAsync(requestMessage); + var responseString = await response.Content.ReadAsStringAsync(); + JObject resposneJson = JObject.Parse(responseString); + string resContent = resposneJson["choices"][0]["message"]["content"].ToString(); + Console.WriteLine(resContent); + return resContent; + } + + + + static async void StartTokenCrawler() + { + while (true) + { + await UpdateTokens(); + UpdateLeaderboard(); + await Task.Delay(TOKEN_UPDATER_INTERVAL); + } + } + + static async Task UpdateTokens() + { + string requestUrl = "https://api.callfi.io/get_tokens.php"; + + using (HttpClient client = new HttpClient()) + { + HttpResponseMessage response = await client.GetAsync(requestUrl); + + if (response.IsSuccessStatusCode) + { + + } + else + { + Console.WriteLine($"Request failed: {response.StatusCode} - {response.ReasonPhrase}"); + } + } + } +} + diff --git a/bin/Debug/net7.0/Newtonsoft.Json.dll b/bin/Debug/net7.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/bin/Debug/net7.0/Newtonsoft.Json.dll differ diff --git a/bin/Debug/net7.0/callfi b/bin/Debug/net7.0/callfi new file mode 100755 index 0000000..830ad65 Binary files /dev/null and b/bin/Debug/net7.0/callfi differ diff --git a/bin/Debug/net7.0/callfi.deps.json b/bin/Debug/net7.0/callfi.deps.json new file mode 100644 index 0000000..f991a9a --- /dev/null +++ b/bin/Debug/net7.0/callfi.deps.json @@ -0,0 +1,777 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "callfi/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4" + }, + "runtime": { + "callfi.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.1": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + } + } + }, + "libraries": { + "callfi/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==", + "path": "microsoft.netcore.platforms/1.1.1", + "hashPath": "microsoft.netcore.platforms.1.1.1.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/callfi.dll b/bin/Debug/net7.0/callfi.dll new file mode 100644 index 0000000..fe9c6bf Binary files /dev/null and b/bin/Debug/net7.0/callfi.dll differ diff --git a/bin/Debug/net7.0/callfi.pdb b/bin/Debug/net7.0/callfi.pdb new file mode 100644 index 0000000..4af423f Binary files /dev/null and b/bin/Debug/net7.0/callfi.pdb differ diff --git a/bin/Debug/net7.0/callfi.runtimeconfig.json b/bin/Debug/net7.0/callfi.runtimeconfig.json new file mode 100644 index 0000000..184be8b --- /dev/null +++ b/bin/Debug/net7.0/callfi.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/Microsoft.CSharp.dll b/bin/Debug/net7.0/linux-x64/Microsoft.CSharp.dll new file mode 100755 index 0000000..0cd5568 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/Microsoft.CSharp.dll differ diff --git a/bin/Debug/net7.0/linux-x64/Microsoft.VisualBasic.Core.dll b/bin/Debug/net7.0/linux-x64/Microsoft.VisualBasic.Core.dll new file mode 100755 index 0000000..aebe7fa Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/bin/Debug/net7.0/linux-x64/Microsoft.VisualBasic.dll b/bin/Debug/net7.0/linux-x64/Microsoft.VisualBasic.dll new file mode 100755 index 0000000..3c328f9 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/Microsoft.VisualBasic.dll differ diff --git a/bin/Debug/net7.0/linux-x64/Microsoft.Win32.Primitives.dll b/bin/Debug/net7.0/linux-x64/Microsoft.Win32.Primitives.dll new file mode 100755 index 0000000..d8ae756 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/Microsoft.Win32.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/Microsoft.Win32.Registry.dll b/bin/Debug/net7.0/linux-x64/Microsoft.Win32.Registry.dll new file mode 100755 index 0000000..ca121eb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/Microsoft.Win32.Registry.dll differ diff --git a/bin/Debug/net7.0/linux-x64/Newtonsoft.Json.dll b/bin/Debug/net7.0/linux-x64/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/Newtonsoft.Json.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.AppContext.dll b/bin/Debug/net7.0/linux-x64/System.AppContext.dll new file mode 100755 index 0000000..69df235 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.AppContext.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Buffers.dll b/bin/Debug/net7.0/linux-x64/System.Buffers.dll new file mode 100755 index 0000000..f179330 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Buffers.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Collections.Concurrent.dll b/bin/Debug/net7.0/linux-x64/System.Collections.Concurrent.dll new file mode 100755 index 0000000..c9b2c26 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Collections.Concurrent.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Collections.Immutable.dll b/bin/Debug/net7.0/linux-x64/System.Collections.Immutable.dll new file mode 100755 index 0000000..8835ca1 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Collections.Immutable.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Collections.NonGeneric.dll b/bin/Debug/net7.0/linux-x64/System.Collections.NonGeneric.dll new file mode 100755 index 0000000..576f84b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Collections.NonGeneric.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Collections.Specialized.dll b/bin/Debug/net7.0/linux-x64/System.Collections.Specialized.dll new file mode 100755 index 0000000..df418e2 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Collections.Specialized.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Collections.dll b/bin/Debug/net7.0/linux-x64/System.Collections.dll new file mode 100755 index 0000000..7913640 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Collections.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.ComponentModel.Annotations.dll b/bin/Debug/net7.0/linux-x64/System.ComponentModel.Annotations.dll new file mode 100755 index 0000000..88225bd Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.ComponentModel.Annotations.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.ComponentModel.DataAnnotations.dll b/bin/Debug/net7.0/linux-x64/System.ComponentModel.DataAnnotations.dll new file mode 100755 index 0000000..99d234f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.ComponentModel.EventBasedAsync.dll b/bin/Debug/net7.0/linux-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100755 index 0000000..b8679a3 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.ComponentModel.Primitives.dll b/bin/Debug/net7.0/linux-x64/System.ComponentModel.Primitives.dll new file mode 100755 index 0000000..3ee0736 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.ComponentModel.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.ComponentModel.TypeConverter.dll b/bin/Debug/net7.0/linux-x64/System.ComponentModel.TypeConverter.dll new file mode 100755 index 0000000..2189ed7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.ComponentModel.dll b/bin/Debug/net7.0/linux-x64/System.ComponentModel.dll new file mode 100755 index 0000000..1ef6813 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.ComponentModel.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Configuration.dll b/bin/Debug/net7.0/linux-x64/System.Configuration.dll new file mode 100755 index 0000000..245cd0a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Configuration.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Console.dll b/bin/Debug/net7.0/linux-x64/System.Console.dll new file mode 100755 index 0000000..65802da Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Console.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Core.dll b/bin/Debug/net7.0/linux-x64/System.Core.dll new file mode 100755 index 0000000..670cfb8 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Core.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Data.Common.dll b/bin/Debug/net7.0/linux-x64/System.Data.Common.dll new file mode 100755 index 0000000..e765196 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Data.Common.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Data.DataSetExtensions.dll b/bin/Debug/net7.0/linux-x64/System.Data.DataSetExtensions.dll new file mode 100755 index 0000000..5659bad Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Data.DataSetExtensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Data.dll b/bin/Debug/net7.0/linux-x64/System.Data.dll new file mode 100755 index 0000000..7c7436c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Data.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Diagnostics.Contracts.dll b/bin/Debug/net7.0/linux-x64/System.Diagnostics.Contracts.dll new file mode 100755 index 0000000..df4edee Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Diagnostics.Contracts.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Diagnostics.Debug.dll b/bin/Debug/net7.0/linux-x64/System.Diagnostics.Debug.dll new file mode 100755 index 0000000..e7374b6 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Diagnostics.Debug.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Diagnostics.DiagnosticSource.dll b/bin/Debug/net7.0/linux-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100755 index 0000000..cfdff0f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Diagnostics.FileVersionInfo.dll b/bin/Debug/net7.0/linux-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100755 index 0000000..70b201e Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Diagnostics.Process.dll b/bin/Debug/net7.0/linux-x64/System.Diagnostics.Process.dll new file mode 100755 index 0000000..f8eb725 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Diagnostics.Process.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Diagnostics.StackTrace.dll b/bin/Debug/net7.0/linux-x64/System.Diagnostics.StackTrace.dll new file mode 100755 index 0000000..0e13e35 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Diagnostics.StackTrace.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll b/bin/Debug/net7.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100755 index 0000000..7dd85d1 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Diagnostics.Tools.dll b/bin/Debug/net7.0/linux-x64/System.Diagnostics.Tools.dll new file mode 100755 index 0000000..0209025 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Diagnostics.Tools.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Diagnostics.TraceSource.dll b/bin/Debug/net7.0/linux-x64/System.Diagnostics.TraceSource.dll new file mode 100755 index 0000000..9919fba Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Diagnostics.TraceSource.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Diagnostics.Tracing.dll b/bin/Debug/net7.0/linux-x64/System.Diagnostics.Tracing.dll new file mode 100755 index 0000000..a69b7e7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Diagnostics.Tracing.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Drawing.Primitives.dll b/bin/Debug/net7.0/linux-x64/System.Drawing.Primitives.dll new file mode 100755 index 0000000..2bfc9ce Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Drawing.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Drawing.dll b/bin/Debug/net7.0/linux-x64/System.Drawing.dll new file mode 100755 index 0000000..5bfa4b5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Drawing.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Dynamic.Runtime.dll b/bin/Debug/net7.0/linux-x64/System.Dynamic.Runtime.dll new file mode 100755 index 0000000..fa923e5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Dynamic.Runtime.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Formats.Asn1.dll b/bin/Debug/net7.0/linux-x64/System.Formats.Asn1.dll new file mode 100755 index 0000000..b13f7da Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Formats.Asn1.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Formats.Tar.dll b/bin/Debug/net7.0/linux-x64/System.Formats.Tar.dll new file mode 100755 index 0000000..eaa6dba Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Formats.Tar.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Globalization.Calendars.dll b/bin/Debug/net7.0/linux-x64/System.Globalization.Calendars.dll new file mode 100755 index 0000000..c94b59b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Globalization.Calendars.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Globalization.Extensions.dll b/bin/Debug/net7.0/linux-x64/System.Globalization.Extensions.dll new file mode 100755 index 0000000..91b149d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Globalization.Extensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Globalization.dll b/bin/Debug/net7.0/linux-x64/System.Globalization.dll new file mode 100755 index 0000000..eacfc40 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Globalization.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.Compression.Brotli.dll b/bin/Debug/net7.0/linux-x64/System.IO.Compression.Brotli.dll new file mode 100755 index 0000000..b65f9bb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.Compression.Brotli.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.Compression.FileSystem.dll b/bin/Debug/net7.0/linux-x64/System.IO.Compression.FileSystem.dll new file mode 100755 index 0000000..d67ea3b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.Compression.FileSystem.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.Compression.ZipFile.dll b/bin/Debug/net7.0/linux-x64/System.IO.Compression.ZipFile.dll new file mode 100755 index 0000000..534d708 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.Compression.ZipFile.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.Compression.dll b/bin/Debug/net7.0/linux-x64/System.IO.Compression.dll new file mode 100755 index 0000000..71d3414 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.Compression.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.AccessControl.dll b/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.AccessControl.dll new file mode 100755 index 0000000..5b95aff Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.DriveInfo.dll b/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100755 index 0000000..d415cf1 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.Primitives.dll b/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.Primitives.dll new file mode 100755 index 0000000..ca24fdd Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.Watcher.dll b/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.Watcher.dll new file mode 100755 index 0000000..05e6787 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.dll b/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.dll new file mode 100755 index 0000000..658a7d4 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.IsolatedStorage.dll b/bin/Debug/net7.0/linux-x64/System.IO.IsolatedStorage.dll new file mode 100755 index 0000000..2f8bb8d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.IsolatedStorage.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.MemoryMappedFiles.dll b/bin/Debug/net7.0/linux-x64/System.IO.MemoryMappedFiles.dll new file mode 100755 index 0000000..86c166c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.Pipes.AccessControl.dll b/bin/Debug/net7.0/linux-x64/System.IO.Pipes.AccessControl.dll new file mode 100755 index 0000000..7d85f8a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.Pipes.dll b/bin/Debug/net7.0/linux-x64/System.IO.Pipes.dll new file mode 100755 index 0000000..842226b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.Pipes.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.UnmanagedMemoryStream.dll b/bin/Debug/net7.0/linux-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100755 index 0000000..ac492c5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.IO.dll b/bin/Debug/net7.0/linux-x64/System.IO.dll new file mode 100755 index 0000000..be88480 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.IO.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Linq.Expressions.dll b/bin/Debug/net7.0/linux-x64/System.Linq.Expressions.dll new file mode 100755 index 0000000..e4eb482 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Linq.Expressions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Linq.Parallel.dll b/bin/Debug/net7.0/linux-x64/System.Linq.Parallel.dll new file mode 100755 index 0000000..d4a48a1 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Linq.Parallel.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Linq.Queryable.dll b/bin/Debug/net7.0/linux-x64/System.Linq.Queryable.dll new file mode 100755 index 0000000..13f9b24 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Linq.Queryable.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Linq.dll b/bin/Debug/net7.0/linux-x64/System.Linq.dll new file mode 100755 index 0000000..1f10898 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Linq.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Memory.dll b/bin/Debug/net7.0/linux-x64/System.Memory.dll new file mode 100755 index 0000000..1390919 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Memory.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.Http.Json.dll b/bin/Debug/net7.0/linux-x64/System.Net.Http.Json.dll new file mode 100755 index 0000000..d0bb58d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.Http.Json.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.Http.dll b/bin/Debug/net7.0/linux-x64/System.Net.Http.dll new file mode 100755 index 0000000..86dee48 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.Http.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.HttpListener.dll b/bin/Debug/net7.0/linux-x64/System.Net.HttpListener.dll new file mode 100755 index 0000000..046eb5e Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.HttpListener.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.Mail.dll b/bin/Debug/net7.0/linux-x64/System.Net.Mail.dll new file mode 100755 index 0000000..75ee76b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.Mail.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.NameResolution.dll b/bin/Debug/net7.0/linux-x64/System.Net.NameResolution.dll new file mode 100755 index 0000000..1131425 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.NameResolution.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.NetworkInformation.dll b/bin/Debug/net7.0/linux-x64/System.Net.NetworkInformation.dll new file mode 100755 index 0000000..9ff401e Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.NetworkInformation.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.Ping.dll b/bin/Debug/net7.0/linux-x64/System.Net.Ping.dll new file mode 100755 index 0000000..75d3964 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.Ping.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.Primitives.dll b/bin/Debug/net7.0/linux-x64/System.Net.Primitives.dll new file mode 100755 index 0000000..7462618 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.Quic.dll b/bin/Debug/net7.0/linux-x64/System.Net.Quic.dll new file mode 100755 index 0000000..1c5c130 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.Quic.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.Requests.dll b/bin/Debug/net7.0/linux-x64/System.Net.Requests.dll new file mode 100755 index 0000000..dc8cc6a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.Requests.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.Security.dll b/bin/Debug/net7.0/linux-x64/System.Net.Security.dll new file mode 100755 index 0000000..b96014b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.Security.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.ServicePoint.dll b/bin/Debug/net7.0/linux-x64/System.Net.ServicePoint.dll new file mode 100755 index 0000000..57f4399 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.ServicePoint.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.Sockets.dll b/bin/Debug/net7.0/linux-x64/System.Net.Sockets.dll new file mode 100755 index 0000000..5e4bfa5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.Sockets.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.WebClient.dll b/bin/Debug/net7.0/linux-x64/System.Net.WebClient.dll new file mode 100755 index 0000000..460ab43 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.WebClient.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.WebHeaderCollection.dll b/bin/Debug/net7.0/linux-x64/System.Net.WebHeaderCollection.dll new file mode 100755 index 0000000..cc4d322 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.WebHeaderCollection.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.WebProxy.dll b/bin/Debug/net7.0/linux-x64/System.Net.WebProxy.dll new file mode 100755 index 0000000..5a77681 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.WebProxy.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.WebSockets.Client.dll b/bin/Debug/net7.0/linux-x64/System.Net.WebSockets.Client.dll new file mode 100755 index 0000000..e779309 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.WebSockets.Client.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.WebSockets.dll b/bin/Debug/net7.0/linux-x64/System.Net.WebSockets.dll new file mode 100755 index 0000000..c26bfce Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.WebSockets.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Net.dll b/bin/Debug/net7.0/linux-x64/System.Net.dll new file mode 100755 index 0000000..50f2648 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Net.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Numerics.Vectors.dll b/bin/Debug/net7.0/linux-x64/System.Numerics.Vectors.dll new file mode 100755 index 0000000..e064a03 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Numerics.Vectors.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Numerics.dll b/bin/Debug/net7.0/linux-x64/System.Numerics.dll new file mode 100755 index 0000000..9e077e9 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Numerics.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.ObjectModel.dll b/bin/Debug/net7.0/linux-x64/System.ObjectModel.dll new file mode 100755 index 0000000..f2074ab Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.ObjectModel.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Private.CoreLib.dll b/bin/Debug/net7.0/linux-x64/System.Private.CoreLib.dll new file mode 100755 index 0000000..556ed6d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Private.CoreLib.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Private.DataContractSerialization.dll b/bin/Debug/net7.0/linux-x64/System.Private.DataContractSerialization.dll new file mode 100755 index 0000000..1bb12bb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Private.DataContractSerialization.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Private.Uri.dll b/bin/Debug/net7.0/linux-x64/System.Private.Uri.dll new file mode 100755 index 0000000..6af808f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Private.Uri.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Private.Xml.Linq.dll b/bin/Debug/net7.0/linux-x64/System.Private.Xml.Linq.dll new file mode 100755 index 0000000..3de3e67 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Private.Xml.Linq.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Private.Xml.dll b/bin/Debug/net7.0/linux-x64/System.Private.Xml.dll new file mode 100755 index 0000000..7f999a7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Private.Xml.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Reflection.DispatchProxy.dll b/bin/Debug/net7.0/linux-x64/System.Reflection.DispatchProxy.dll new file mode 100755 index 0000000..8f7f5ff Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Reflection.DispatchProxy.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.ILGeneration.dll b/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100755 index 0000000..add1936 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.Lightweight.dll b/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.Lightweight.dll new file mode 100755 index 0000000..03abb5f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.dll b/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.dll new file mode 100755 index 0000000..0d76c2b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Reflection.Extensions.dll b/bin/Debug/net7.0/linux-x64/System.Reflection.Extensions.dll new file mode 100755 index 0000000..2eb42c6 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Reflection.Extensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Reflection.Metadata.dll b/bin/Debug/net7.0/linux-x64/System.Reflection.Metadata.dll new file mode 100755 index 0000000..45fe4e5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Reflection.Metadata.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Reflection.Primitives.dll b/bin/Debug/net7.0/linux-x64/System.Reflection.Primitives.dll new file mode 100755 index 0000000..46588c4 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Reflection.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Reflection.TypeExtensions.dll b/bin/Debug/net7.0/linux-x64/System.Reflection.TypeExtensions.dll new file mode 100755 index 0000000..df97db7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Reflection.TypeExtensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Reflection.dll b/bin/Debug/net7.0/linux-x64/System.Reflection.dll new file mode 100755 index 0000000..54eed49 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Reflection.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Resources.Reader.dll b/bin/Debug/net7.0/linux-x64/System.Resources.Reader.dll new file mode 100755 index 0000000..d35ddc0 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Resources.Reader.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Resources.ResourceManager.dll b/bin/Debug/net7.0/linux-x64/System.Resources.ResourceManager.dll new file mode 100755 index 0000000..c70f500 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Resources.ResourceManager.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Resources.Writer.dll b/bin/Debug/net7.0/linux-x64/System.Resources.Writer.dll new file mode 100755 index 0000000..16bb9db Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Resources.Writer.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 0000000..a2cb7e4 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100755 index 0000000..acd18ac Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.Extensions.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.Extensions.dll new file mode 100755 index 0000000..95c7998 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.Extensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.Handles.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.Handles.dll new file mode 100755 index 0000000..33852fb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.Handles.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.JavaScript.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.JavaScript.dll new file mode 100755 index 0000000..ba32e16 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100755 index 0000000..2813650 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.dll new file mode 100755 index 0000000..d2f8b1b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.Intrinsics.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.Intrinsics.dll new file mode 100755 index 0000000..cbf8593 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.Intrinsics.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.Loader.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.Loader.dll new file mode 100755 index 0000000..399a539 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.Loader.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.Numerics.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.Numerics.dll new file mode 100755 index 0000000..f49bcce Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.Numerics.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Formatters.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Formatters.dll new file mode 100755 index 0000000..fa34049 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Json.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Json.dll new file mode 100755 index 0000000..ccc265c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Json.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Primitives.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Primitives.dll new file mode 100755 index 0000000..493b3a7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Xml.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Xml.dll new file mode 100755 index 0000000..d13511a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.dll new file mode 100755 index 0000000..9638628 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Runtime.dll b/bin/Debug/net7.0/linux-x64/System.Runtime.dll new file mode 100755 index 0000000..003ff64 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Runtime.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.AccessControl.dll b/bin/Debug/net7.0/linux-x64/System.Security.AccessControl.dll new file mode 100755 index 0000000..128e4e0 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.AccessControl.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Claims.dll b/bin/Debug/net7.0/linux-x64/System.Security.Claims.dll new file mode 100755 index 0000000..18c11ae Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Claims.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Algorithms.dll b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Algorithms.dll new file mode 100755 index 0000000..c2c1dfc Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Cng.dll b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Cng.dll new file mode 100755 index 0000000..cdc3cbb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Cng.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Csp.dll b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Csp.dll new file mode 100755 index 0000000..bc5bffb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Csp.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Encoding.dll b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Encoding.dll new file mode 100755 index 0000000..0f2a809 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.OpenSsl.dll b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100755 index 0000000..d0892a1 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Primitives.dll b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Primitives.dll new file mode 100755 index 0000000..0e0dd9a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.X509Certificates.dll b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100755 index 0000000..475c11d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.dll b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.dll new file mode 100755 index 0000000..44ab412 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Principal.Windows.dll b/bin/Debug/net7.0/linux-x64/System.Security.Principal.Windows.dll new file mode 100755 index 0000000..3c006fc Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Principal.Windows.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.Principal.dll b/bin/Debug/net7.0/linux-x64/System.Security.Principal.dll new file mode 100755 index 0000000..4f5d47e Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.Principal.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.SecureString.dll b/bin/Debug/net7.0/linux-x64/System.Security.SecureString.dll new file mode 100755 index 0000000..2f11df9 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.SecureString.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Security.dll b/bin/Debug/net7.0/linux-x64/System.Security.dll new file mode 100755 index 0000000..5cd145b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Security.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.ServiceModel.Web.dll b/bin/Debug/net7.0/linux-x64/System.ServiceModel.Web.dll new file mode 100755 index 0000000..c9551a2 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.ServiceModel.Web.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.ServiceProcess.dll b/bin/Debug/net7.0/linux-x64/System.ServiceProcess.dll new file mode 100755 index 0000000..2ff7313 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.ServiceProcess.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Text.Encoding.CodePages.dll b/bin/Debug/net7.0/linux-x64/System.Text.Encoding.CodePages.dll new file mode 100755 index 0000000..577376f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Text.Encoding.CodePages.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Text.Encoding.Extensions.dll b/bin/Debug/net7.0/linux-x64/System.Text.Encoding.Extensions.dll new file mode 100755 index 0000000..ccd8819 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Text.Encoding.Extensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Text.Encoding.dll b/bin/Debug/net7.0/linux-x64/System.Text.Encoding.dll new file mode 100755 index 0000000..88916e8 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Text.Encoding.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Text.Encodings.Web.dll b/bin/Debug/net7.0/linux-x64/System.Text.Encodings.Web.dll new file mode 100755 index 0000000..f00ced6 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Text.Encodings.Web.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Text.Json.dll b/bin/Debug/net7.0/linux-x64/System.Text.Json.dll new file mode 100755 index 0000000..57a4f20 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Text.Json.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Text.RegularExpressions.dll b/bin/Debug/net7.0/linux-x64/System.Text.RegularExpressions.dll new file mode 100755 index 0000000..95ee33b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Text.RegularExpressions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Threading.Channels.dll b/bin/Debug/net7.0/linux-x64/System.Threading.Channels.dll new file mode 100755 index 0000000..e7fc02d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Threading.Channels.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Threading.Overlapped.dll b/bin/Debug/net7.0/linux-x64/System.Threading.Overlapped.dll new file mode 100755 index 0000000..1b5004c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Threading.Overlapped.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Dataflow.dll b/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Dataflow.dll new file mode 100755 index 0000000..4cfe59e Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Extensions.dll b/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Extensions.dll new file mode 100755 index 0000000..94dd6aa Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Parallel.dll b/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Parallel.dll new file mode 100755 index 0000000..22b0f08 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.dll b/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.dll new file mode 100755 index 0000000..bac45ef Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Threading.Thread.dll b/bin/Debug/net7.0/linux-x64/System.Threading.Thread.dll new file mode 100755 index 0000000..759fd0c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Threading.Thread.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Threading.ThreadPool.dll b/bin/Debug/net7.0/linux-x64/System.Threading.ThreadPool.dll new file mode 100755 index 0000000..d27039b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Threading.ThreadPool.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Threading.Timer.dll b/bin/Debug/net7.0/linux-x64/System.Threading.Timer.dll new file mode 100755 index 0000000..2622f63 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Threading.Timer.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Threading.dll b/bin/Debug/net7.0/linux-x64/System.Threading.dll new file mode 100755 index 0000000..81187b7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Threading.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Transactions.Local.dll b/bin/Debug/net7.0/linux-x64/System.Transactions.Local.dll new file mode 100755 index 0000000..9ec3f97 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Transactions.Local.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Transactions.dll b/bin/Debug/net7.0/linux-x64/System.Transactions.dll new file mode 100755 index 0000000..07883cf Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Transactions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.ValueTuple.dll b/bin/Debug/net7.0/linux-x64/System.ValueTuple.dll new file mode 100755 index 0000000..aea3678 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.ValueTuple.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Web.HttpUtility.dll b/bin/Debug/net7.0/linux-x64/System.Web.HttpUtility.dll new file mode 100755 index 0000000..2a43f43 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Web.HttpUtility.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Web.dll b/bin/Debug/net7.0/linux-x64/System.Web.dll new file mode 100755 index 0000000..22248f9 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Web.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Windows.dll b/bin/Debug/net7.0/linux-x64/System.Windows.dll new file mode 100755 index 0000000..0422dfa Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Windows.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Xml.Linq.dll b/bin/Debug/net7.0/linux-x64/System.Xml.Linq.dll new file mode 100755 index 0000000..4d5fe9f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Xml.Linq.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Xml.ReaderWriter.dll b/bin/Debug/net7.0/linux-x64/System.Xml.ReaderWriter.dll new file mode 100755 index 0000000..c9b6a37 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Xml.ReaderWriter.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Xml.Serialization.dll b/bin/Debug/net7.0/linux-x64/System.Xml.Serialization.dll new file mode 100755 index 0000000..a33d415 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Xml.Serialization.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Xml.XDocument.dll b/bin/Debug/net7.0/linux-x64/System.Xml.XDocument.dll new file mode 100755 index 0000000..f8d4a32 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Xml.XDocument.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Xml.XPath.XDocument.dll b/bin/Debug/net7.0/linux-x64/System.Xml.XPath.XDocument.dll new file mode 100755 index 0000000..3ee501f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Xml.XPath.XDocument.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Xml.XPath.dll b/bin/Debug/net7.0/linux-x64/System.Xml.XPath.dll new file mode 100755 index 0000000..94948dd Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Xml.XPath.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Xml.XmlDocument.dll b/bin/Debug/net7.0/linux-x64/System.Xml.XmlDocument.dll new file mode 100755 index 0000000..2a75235 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Xml.XmlDocument.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Xml.XmlSerializer.dll b/bin/Debug/net7.0/linux-x64/System.Xml.XmlSerializer.dll new file mode 100755 index 0000000..cb6e6e0 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Xml.XmlSerializer.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.Xml.dll b/bin/Debug/net7.0/linux-x64/System.Xml.dll new file mode 100755 index 0000000..559dd62 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.Xml.dll differ diff --git a/bin/Debug/net7.0/linux-x64/System.dll b/bin/Debug/net7.0/linux-x64/System.dll new file mode 100755 index 0000000..a975a68 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/System.dll differ diff --git a/bin/Debug/net7.0/linux-x64/WindowsBase.dll b/bin/Debug/net7.0/linux-x64/WindowsBase.dll new file mode 100755 index 0000000..c728090 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/WindowsBase.dll differ diff --git a/bin/Debug/net7.0/linux-x64/callfi b/bin/Debug/net7.0/linux-x64/callfi new file mode 100755 index 0000000..830ad65 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/callfi differ diff --git a/bin/Debug/net7.0/linux-x64/callfi.deps.json b/bin/Debug/net7.0/linux-x64/callfi.deps.json new file mode 100644 index 0000000..dc4d88b --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/callfi.deps.json @@ -0,0 +1,4060 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0/linux-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": {}, + ".NETCoreApp,Version=v7.0/linux-x64": { + "callfi/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4", + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "7.0.20" + }, + "runtime": { + "callfi.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/7.0.20": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.2024.26716" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.AppContext.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Buffers.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Collections.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Console.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Data.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Formats.Tar.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Globalization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Linq.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Memory.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Http.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Security.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.InteropServices.JavaScript.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "7.0.2024.26716" + } + }, + "native": { + "createdump": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Globalization.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.IO.Compression.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Net.Security.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Security.Cryptography.Native.OpenSsl.so": { + "fileVersion": "0.0.0.0" + }, + "libclrgc.so": { + "fileVersion": "0.0.0.0" + }, + "libclrjit.so": { + "fileVersion": "0.0.0.0" + }, + "libcoreclr.so": { + "fileVersion": "0.0.0.0" + }, + "libcoreclrtraceptprovider.so": { + "fileVersion": "0.0.0.0" + }, + "libhostfxr.so": { + "fileVersion": "0.0.0.0" + }, + "libhostpolicy.so": { + "fileVersion": "0.0.0.0" + }, + "libmscordaccore.so": { + "fileVersion": "0.0.0.0" + }, + "libmscordbi.so": { + "fileVersion": "0.0.0.0" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.1": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.Microsoft.Win32.Primitives": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": {}, + "runtime.any.System.Globalization/4.3.0": {}, + "runtime.any.System.Globalization.Calendars/4.3.0": {}, + "runtime.any.System.IO/4.3.0": {}, + "runtime.any.System.Reflection/4.3.0": {}, + "runtime.any.System.Reflection.Primitives/4.3.0": {}, + "runtime.any.System.Resources.ResourceManager/4.3.0": {}, + "runtime.any.System.Runtime/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0" + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": {}, + "runtime.any.System.Runtime.InteropServices/4.3.0": {}, + "runtime.any.System.Text.Encoding/4.3.0": {}, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": {}, + "runtime.any.System.Threading.Tasks/4.3.0": {}, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.unix.Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.IO.FileSystem/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Private.Uri/4.3.0": { + "dependencies": { + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Runtime.Extensions/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.System.Diagnostics.Debug": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.IO.FileSystem": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.3.0" + } + }, + "System.Private.Uri/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.unix.System.Private.Uri": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + } + } + } + }, + "libraries": { + "callfi/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/7.0.20": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==", + "path": "microsoft.netcore.platforms/1.1.1", + "hashPath": "microsoft.netcore.platforms.1.1.1.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "path": "runtime.any.system.collections/4.3.0", + "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", + "path": "runtime.any.system.diagnostics.tracing/4.3.0", + "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "path": "runtime.any.system.globalization/4.3.0", + "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", + "path": "runtime.any.system.globalization.calendars/4.3.0", + "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "path": "runtime.any.system.io/4.3.0", + "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "path": "runtime.any.system.reflection/4.3.0", + "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "path": "runtime.any.system.runtime/4.3.0", + "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "path": "runtime.any.system.runtime.handles/4.3.0", + "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "path": "runtime.any.system.text.encoding/4.3.0", + "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", + "path": "runtime.any.system.text.encoding.extensions/4.3.0", + "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "path": "runtime.any.system.threading.tasks/4.3.0", + "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.unix.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2mI2Mfq+CVatgr4RWGvAWBjoCfUafy6VNFU7G9OA52DjO8x/okfIbsEq2UPgeGfdpO7X5gmPXKT8slx0tn0Mhw==", + "path": "runtime.unix.microsoft.win32.primitives/4.3.0", + "hashPath": "runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WV8KLRHWVUVUDduFnvGMHt0FsEt2wK6xPl1EgDKlaMx2KnZ43A/O0GzP8wIuvAC7mq4T9V1mm90r+PXkL9FPdQ==", + "path": "runtime.unix.system.diagnostics.debug/4.3.0", + "hashPath": "runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ajmTcjrqc3vgV1TH54DRioshbEniaFbOAJ0kReGuNsp9uIcqYle0RmUo6+Qlwqe3JIs4TDxgnqs3UzX3gRJ1rA==", + "path": "runtime.unix.system.io.filesystem/4.3.0", + "hashPath": "runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AZcRXhH7Gamr+bckUfX3iHefPIrujJTt9XWQWo0elNiP1SNasX0KBWINZkDKY0GsOrsyJ7cB4MgIRTZzLlsTKg==", + "path": "runtime.unix.system.net.primitives/4.3.0", + "hashPath": "runtime.unix.system.net.primitives.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ooWzobr5RAq34r9uan1r/WPXJYG1XWy9KanrxNvEnBzbFdQbMG7Y3bVi4QxR7xZMNLOxLLTAyXvnSkfj5boZSg==", + "path": "runtime.unix.system.private.uri/4.3.0", + "hashPath": "runtime.unix.system.private.uri.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zQiTBVpiLftTQZW8GFsV0gjYikB1WMkEPIxF5O6RkUrSV/OgvRRTYgeFQha/0keBpuS0HYweraGRwhfhJ7dj7w==", + "path": "runtime.unix.system.runtime.extensions/4.3.0", + "hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "path": "system.private.uri/4.3.0", + "hashPath": "system.private.uri.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + } + }, + "runtimes": { + "alpine-x64": [ + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.10-x64": [ + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.11-x64": [ + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.12-x64": [ + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.13-x64": [ + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.14-x64": [ + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.15-x64": [ + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.16-x64": [ + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.17-x64": [ + "alpine.3.17", + "alpine.3.16-x64", + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.18-x64": [ + "alpine.3.18", + "alpine.3.17-x64", + "alpine.3.17", + "alpine.3.16-x64", + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.6-x64": [ + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.7-x64": [ + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.8-x64": [ + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.9-x64": [ + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android-x64": [ + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.21-x64": [ + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.22-x64": [ + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.23-x64": [ + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.24-x64": [ + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.25-x64": [ + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.26-x64": [ + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.27-x64": [ + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.28-x64": [ + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.29-x64": [ + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.30-x64": [ + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.31-x64": [ + "android.31", + "android.30-x64", + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.32-x64": [ + "android.32", + "android.31-x64", + "android.31", + "android.30-x64", + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "arch-x64": [ + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos-x64": [ + "centos", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.7-x64": [ + "centos.7", + "centos-x64", + "rhel.7-x64", + "centos", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.8-x64": [ + "centos.8", + "centos-x64", + "rhel.8-x64", + "centos", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.9-x64": [ + "centos.9", + "centos-x64", + "rhel.9-x64", + "centos", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian-x64": [ + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.10-x64": [ + "debian.10", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.11-x64": [ + "debian.11", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.12-x64": [ + "debian.12", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.8-x64": [ + "debian.8", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.9-x64": [ + "debian.9", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "exherbo-x64": [ + "exherbo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora-x64": [ + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.23-x64": [ + "fedora.23", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.24-x64": [ + "fedora.24", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.25-x64": [ + "fedora.25", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.26-x64": [ + "fedora.26", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.27-x64": [ + "fedora.27", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.28-x64": [ + "fedora.28", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.29-x64": [ + "fedora.29", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.30-x64": [ + "fedora.30", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.31-x64": [ + "fedora.31", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.32-x64": [ + "fedora.32", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.33-x64": [ + "fedora.33", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.34-x64": [ + "fedora.34", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.35-x64": [ + "fedora.35", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.36-x64": [ + "fedora.36", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.37-x64": [ + "fedora.37", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.38-x64": [ + "fedora.38", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.39-x64": [ + "fedora.39", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "gentoo-x64": [ + "gentoo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-bionic-x64": [ + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-musl-x64": [ + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-x64": [ + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17-x64": [ + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.1-x64": [ + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.2-x64": [ + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.3-x64": [ + "linuxmint.17.3", + "linuxmint.17.2-x64", + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18-x64": [ + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.1-x64": [ + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.2-x64": [ + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.3-x64": [ + "linuxmint.18.3", + "linuxmint.18.2-x64", + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19-x64": [ + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.1-x64": [ + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.2-x64": [ + "linuxmint.19.2", + "linuxmint.19.1-x64", + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "manjaro-x64": [ + "manjaro", + "arch-x64", + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "miraclelinux-x64": [ + "miraclelinux", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "miraclelinux.8-x64": [ + "miraclelinux.8", + "miraclelinux-x64", + "rhel.8-x64", + "miraclelinux", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "miraclelinux.9-x64": [ + "miraclelinux.9", + "miraclelinux-x64", + "rhel.9-x64", + "miraclelinux", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol-x64": [ + "ol", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7-x64": [ + "ol.7", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.0-x64": [ + "ol.7.0", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.1-x64": [ + "ol.7.1", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.2-x64": [ + "ol.7.2", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.3-x64": [ + "ol.7.3", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.4-x64": [ + "ol.7.4", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.5-x64": [ + "ol.7.5", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.6-x64": [ + "ol.7.6", + "ol.7.5-x64", + "rhel.7.6-x64", + "ol.7.5", + "rhel.7.6", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8-x64": [ + "ol.8", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8.0-x64": [ + "ol.8.0", + "ol.8-x64", + "rhel.8.0-x64", + "ol.8", + "rhel.8.0", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse-x64": [ + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.13.2-x64": [ + "opensuse.13.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.0-x64": [ + "opensuse.15.0", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.1-x64": [ + "opensuse.15.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.1-x64": [ + "opensuse.42.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.2-x64": [ + "opensuse.42.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.3-x64": [ + "opensuse.42.3", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel-x64": [ + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.6-x64": [ + "rhel.6", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7-x64": [ + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.0-x64": [ + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.1-x64": [ + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.2-x64": [ + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.3-x64": [ + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.4-x64": [ + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.5-x64": [ + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.6-x64": [ + "rhel.7.6", + "rhel.7.5-x64", + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8-x64": [ + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.0-x64": [ + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.1-x64": [ + "rhel.8.1", + "rhel.8.0-x64", + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.9-x64": [ + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky-x64": [ + "rocky", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.8-x64": [ + "rocky.8", + "rocky-x64", + "rhel.8-x64", + "rocky", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.9-x64": [ + "rocky.9", + "rocky-x64", + "rhel.9-x64", + "rocky", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles-x64": [ + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12-x64": [ + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.1-x64": [ + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.2-x64": [ + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.3-x64": [ + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.4-x64": [ + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15-x64": [ + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15.1-x64": [ + "sles.15.1", + "sles.15-x64", + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu-x64": [ + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.04-x64": [ + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.10-x64": [ + "ubuntu.14.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.04-x64": [ + "ubuntu.15.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.10-x64": [ + "ubuntu.15.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.04-x64": [ + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.10-x64": [ + "ubuntu.16.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.04-x64": [ + "ubuntu.17.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.10-x64": [ + "ubuntu.17.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.04-x64": [ + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.10-x64": [ + "ubuntu.18.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.04-x64": [ + "ubuntu.19.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.10-x64": [ + "ubuntu.19.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.04-x64": [ + "ubuntu.20.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.10-x64": [ + "ubuntu.20.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.04-x64": [ + "ubuntu.21.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.10-x64": [ + "ubuntu.21.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.22.04-x64": [ + "ubuntu.22.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.22.10-x64": [ + "ubuntu.22.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.23.04-x64": [ + "ubuntu.23.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.23.10-x64": [ + "ubuntu.23.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/callfi.dll b/bin/Debug/net7.0/linux-x64/callfi.dll new file mode 100644 index 0000000..fef89a2 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/callfi.dll differ diff --git a/bin/Debug/net7.0/linux-x64/callfi.pdb b/bin/Debug/net7.0/linux-x64/callfi.pdb new file mode 100644 index 0000000..c03cc41 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/callfi.pdb differ diff --git a/bin/Debug/net7.0/linux-x64/callfi.runtimeconfig.json b/bin/Debug/net7.0/linux-x64/callfi.runtimeconfig.json new file mode 100644 index 0000000..49938c6 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/callfi.runtimeconfig.json @@ -0,0 +1,11 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "7.0.20" + } + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/createdump b/bin/Debug/net7.0/linux-x64/createdump new file mode 100755 index 0000000..f04c4c3 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/createdump differ diff --git a/bin/Debug/net7.0/linux-x64/libSystem.Globalization.Native.so b/bin/Debug/net7.0/linux-x64/libSystem.Globalization.Native.so new file mode 100755 index 0000000..3d80a82 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libSystem.Globalization.Native.so differ diff --git a/bin/Debug/net7.0/linux-x64/libSystem.IO.Compression.Native.so b/bin/Debug/net7.0/linux-x64/libSystem.IO.Compression.Native.so new file mode 100755 index 0000000..4ba7248 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libSystem.IO.Compression.Native.so differ diff --git a/bin/Debug/net7.0/linux-x64/libSystem.Native.so b/bin/Debug/net7.0/linux-x64/libSystem.Native.so new file mode 100755 index 0000000..cf8739b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libSystem.Native.so differ diff --git a/bin/Debug/net7.0/linux-x64/libSystem.Net.Security.Native.so b/bin/Debug/net7.0/linux-x64/libSystem.Net.Security.Native.so new file mode 100755 index 0000000..6f4660c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libSystem.Net.Security.Native.so differ diff --git a/bin/Debug/net7.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so b/bin/Debug/net7.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so new file mode 100755 index 0000000..bd35d93 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so differ diff --git a/bin/Debug/net7.0/linux-x64/libclrgc.so b/bin/Debug/net7.0/linux-x64/libclrgc.so new file mode 100755 index 0000000..b679196 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libclrgc.so differ diff --git a/bin/Debug/net7.0/linux-x64/libclrjit.so b/bin/Debug/net7.0/linux-x64/libclrjit.so new file mode 100755 index 0000000..100f789 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libclrjit.so differ diff --git a/bin/Debug/net7.0/linux-x64/libcoreclr.so b/bin/Debug/net7.0/linux-x64/libcoreclr.so new file mode 100755 index 0000000..76f36ce Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libcoreclr.so differ diff --git a/bin/Debug/net7.0/linux-x64/libcoreclrtraceptprovider.so b/bin/Debug/net7.0/linux-x64/libcoreclrtraceptprovider.so new file mode 100755 index 0000000..e206855 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libcoreclrtraceptprovider.so differ diff --git a/bin/Debug/net7.0/linux-x64/libhostfxr.so b/bin/Debug/net7.0/linux-x64/libhostfxr.so new file mode 100755 index 0000000..8430523 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libhostfxr.so differ diff --git a/bin/Debug/net7.0/linux-x64/libhostpolicy.so b/bin/Debug/net7.0/linux-x64/libhostpolicy.so new file mode 100755 index 0000000..19254c0 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libhostpolicy.so differ diff --git a/bin/Debug/net7.0/linux-x64/libmscordaccore.so b/bin/Debug/net7.0/linux-x64/libmscordaccore.so new file mode 100755 index 0000000..ab059d5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libmscordaccore.so differ diff --git a/bin/Debug/net7.0/linux-x64/libmscordbi.so b/bin/Debug/net7.0/linux-x64/libmscordbi.so new file mode 100755 index 0000000..88fd7a8 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/libmscordbi.so differ diff --git a/bin/Debug/net7.0/linux-x64/mscorlib.dll b/bin/Debug/net7.0/linux-x64/mscorlib.dll new file mode 100755 index 0000000..eac265a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/mscorlib.dll differ diff --git a/bin/Debug/net7.0/linux-x64/netstandard.dll b/bin/Debug/net7.0/linux-x64/netstandard.dll new file mode 100755 index 0000000..f1ea6fc Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/netstandard.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/Microsoft.CSharp.dll b/bin/Debug/net7.0/linux-x64/publish/Microsoft.CSharp.dll new file mode 100755 index 0000000..0cd5568 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/Microsoft.CSharp.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/Microsoft.VisualBasic.Core.dll b/bin/Debug/net7.0/linux-x64/publish/Microsoft.VisualBasic.Core.dll new file mode 100755 index 0000000..aebe7fa Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/Microsoft.VisualBasic.Core.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/Microsoft.VisualBasic.dll b/bin/Debug/net7.0/linux-x64/publish/Microsoft.VisualBasic.dll new file mode 100755 index 0000000..3c328f9 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/Microsoft.VisualBasic.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/Microsoft.Win32.Primitives.dll b/bin/Debug/net7.0/linux-x64/publish/Microsoft.Win32.Primitives.dll new file mode 100755 index 0000000..d8ae756 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/Microsoft.Win32.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/Microsoft.Win32.Registry.dll b/bin/Debug/net7.0/linux-x64/publish/Microsoft.Win32.Registry.dll new file mode 100755 index 0000000..ca121eb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/Microsoft.Win32.Registry.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/Newtonsoft.Json.dll b/bin/Debug/net7.0/linux-x64/publish/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/Newtonsoft.Json.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.AppContext.dll b/bin/Debug/net7.0/linux-x64/publish/System.AppContext.dll new file mode 100755 index 0000000..69df235 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.AppContext.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Buffers.dll b/bin/Debug/net7.0/linux-x64/publish/System.Buffers.dll new file mode 100755 index 0000000..f179330 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Buffers.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Collections.Concurrent.dll b/bin/Debug/net7.0/linux-x64/publish/System.Collections.Concurrent.dll new file mode 100755 index 0000000..c9b2c26 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Collections.Concurrent.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Collections.Immutable.dll b/bin/Debug/net7.0/linux-x64/publish/System.Collections.Immutable.dll new file mode 100755 index 0000000..8835ca1 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Collections.Immutable.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Collections.NonGeneric.dll b/bin/Debug/net7.0/linux-x64/publish/System.Collections.NonGeneric.dll new file mode 100755 index 0000000..576f84b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Collections.NonGeneric.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Collections.Specialized.dll b/bin/Debug/net7.0/linux-x64/publish/System.Collections.Specialized.dll new file mode 100755 index 0000000..df418e2 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Collections.Specialized.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Collections.dll b/bin/Debug/net7.0/linux-x64/publish/System.Collections.dll new file mode 100755 index 0000000..7913640 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Collections.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.Annotations.dll b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.Annotations.dll new file mode 100755 index 0000000..88225bd Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.Annotations.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.DataAnnotations.dll b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.DataAnnotations.dll new file mode 100755 index 0000000..99d234f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.DataAnnotations.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.EventBasedAsync.dll b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.EventBasedAsync.dll new file mode 100755 index 0000000..b8679a3 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.Primitives.dll b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.Primitives.dll new file mode 100755 index 0000000..3ee0736 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.TypeConverter.dll b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.TypeConverter.dll new file mode 100755 index 0000000..2189ed7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.TypeConverter.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.dll b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.dll new file mode 100755 index 0000000..1ef6813 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Configuration.dll b/bin/Debug/net7.0/linux-x64/publish/System.Configuration.dll new file mode 100755 index 0000000..245cd0a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Configuration.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Console.dll b/bin/Debug/net7.0/linux-x64/publish/System.Console.dll new file mode 100755 index 0000000..65802da Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Console.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Core.dll b/bin/Debug/net7.0/linux-x64/publish/System.Core.dll new file mode 100755 index 0000000..670cfb8 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Core.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Data.Common.dll b/bin/Debug/net7.0/linux-x64/publish/System.Data.Common.dll new file mode 100755 index 0000000..e765196 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Data.Common.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Data.DataSetExtensions.dll b/bin/Debug/net7.0/linux-x64/publish/System.Data.DataSetExtensions.dll new file mode 100755 index 0000000..5659bad Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Data.DataSetExtensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Data.dll b/bin/Debug/net7.0/linux-x64/publish/System.Data.dll new file mode 100755 index 0000000..7c7436c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Data.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Contracts.dll b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Contracts.dll new file mode 100755 index 0000000..df4edee Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Contracts.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Debug.dll b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Debug.dll new file mode 100755 index 0000000..e7374b6 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Debug.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.DiagnosticSource.dll b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.DiagnosticSource.dll new file mode 100755 index 0000000..cfdff0f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.FileVersionInfo.dll b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.FileVersionInfo.dll new file mode 100755 index 0000000..70b201e Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Process.dll b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Process.dll new file mode 100755 index 0000000..f8eb725 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Process.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.StackTrace.dll b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.StackTrace.dll new file mode 100755 index 0000000..0e13e35 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.StackTrace.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.TextWriterTraceListener.dll b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.TextWriterTraceListener.dll new file mode 100755 index 0000000..7dd85d1 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Tools.dll b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Tools.dll new file mode 100755 index 0000000..0209025 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Tools.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.TraceSource.dll b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.TraceSource.dll new file mode 100755 index 0000000..9919fba Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.TraceSource.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Tracing.dll b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Tracing.dll new file mode 100755 index 0000000..a69b7e7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Tracing.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Drawing.Primitives.dll b/bin/Debug/net7.0/linux-x64/publish/System.Drawing.Primitives.dll new file mode 100755 index 0000000..2bfc9ce Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Drawing.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Drawing.dll b/bin/Debug/net7.0/linux-x64/publish/System.Drawing.dll new file mode 100755 index 0000000..5bfa4b5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Drawing.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Dynamic.Runtime.dll b/bin/Debug/net7.0/linux-x64/publish/System.Dynamic.Runtime.dll new file mode 100755 index 0000000..fa923e5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Dynamic.Runtime.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Formats.Asn1.dll b/bin/Debug/net7.0/linux-x64/publish/System.Formats.Asn1.dll new file mode 100755 index 0000000..b13f7da Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Formats.Asn1.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Formats.Tar.dll b/bin/Debug/net7.0/linux-x64/publish/System.Formats.Tar.dll new file mode 100755 index 0000000..eaa6dba Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Formats.Tar.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Globalization.Calendars.dll b/bin/Debug/net7.0/linux-x64/publish/System.Globalization.Calendars.dll new file mode 100755 index 0000000..c94b59b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Globalization.Calendars.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Globalization.Extensions.dll b/bin/Debug/net7.0/linux-x64/publish/System.Globalization.Extensions.dll new file mode 100755 index 0000000..91b149d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Globalization.Extensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Globalization.dll b/bin/Debug/net7.0/linux-x64/publish/System.Globalization.dll new file mode 100755 index 0000000..eacfc40 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Globalization.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.Brotli.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.Brotli.dll new file mode 100755 index 0000000..b65f9bb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.Brotli.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.FileSystem.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.FileSystem.dll new file mode 100755 index 0000000..d67ea3b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.FileSystem.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.ZipFile.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.ZipFile.dll new file mode 100755 index 0000000..534d708 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.ZipFile.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.dll new file mode 100755 index 0000000..71d3414 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.AccessControl.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.AccessControl.dll new file mode 100755 index 0000000..5b95aff Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.AccessControl.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.DriveInfo.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.DriveInfo.dll new file mode 100755 index 0000000..d415cf1 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.DriveInfo.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.Primitives.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.Primitives.dll new file mode 100755 index 0000000..ca24fdd Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.Watcher.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.Watcher.dll new file mode 100755 index 0000000..05e6787 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.Watcher.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.dll new file mode 100755 index 0000000..658a7d4 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.IsolatedStorage.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.IsolatedStorage.dll new file mode 100755 index 0000000..2f8bb8d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.IsolatedStorage.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.MemoryMappedFiles.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.MemoryMappedFiles.dll new file mode 100755 index 0000000..86c166c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.Pipes.AccessControl.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.Pipes.AccessControl.dll new file mode 100755 index 0000000..7d85f8a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.Pipes.AccessControl.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.Pipes.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.Pipes.dll new file mode 100755 index 0000000..842226b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.Pipes.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.UnmanagedMemoryStream.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.UnmanagedMemoryStream.dll new file mode 100755 index 0000000..ac492c5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.IO.dll b/bin/Debug/net7.0/linux-x64/publish/System.IO.dll new file mode 100755 index 0000000..be88480 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.IO.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Linq.Expressions.dll b/bin/Debug/net7.0/linux-x64/publish/System.Linq.Expressions.dll new file mode 100755 index 0000000..e4eb482 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Linq.Expressions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Linq.Parallel.dll b/bin/Debug/net7.0/linux-x64/publish/System.Linq.Parallel.dll new file mode 100755 index 0000000..d4a48a1 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Linq.Parallel.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Linq.Queryable.dll b/bin/Debug/net7.0/linux-x64/publish/System.Linq.Queryable.dll new file mode 100755 index 0000000..13f9b24 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Linq.Queryable.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Linq.dll b/bin/Debug/net7.0/linux-x64/publish/System.Linq.dll new file mode 100755 index 0000000..1f10898 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Linq.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Memory.dll b/bin/Debug/net7.0/linux-x64/publish/System.Memory.dll new file mode 100755 index 0000000..1390919 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Memory.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.Http.Json.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.Http.Json.dll new file mode 100755 index 0000000..d0bb58d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.Http.Json.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.Http.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.Http.dll new file mode 100755 index 0000000..86dee48 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.Http.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.HttpListener.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.HttpListener.dll new file mode 100755 index 0000000..046eb5e Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.HttpListener.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.Mail.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.Mail.dll new file mode 100755 index 0000000..75ee76b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.Mail.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.NameResolution.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.NameResolution.dll new file mode 100755 index 0000000..1131425 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.NameResolution.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.NetworkInformation.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.NetworkInformation.dll new file mode 100755 index 0000000..9ff401e Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.NetworkInformation.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.Ping.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.Ping.dll new file mode 100755 index 0000000..75d3964 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.Ping.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.Primitives.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.Primitives.dll new file mode 100755 index 0000000..7462618 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.Quic.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.Quic.dll new file mode 100755 index 0000000..1c5c130 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.Quic.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.Requests.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.Requests.dll new file mode 100755 index 0000000..dc8cc6a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.Requests.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.Security.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.Security.dll new file mode 100755 index 0000000..b96014b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.Security.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.ServicePoint.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.ServicePoint.dll new file mode 100755 index 0000000..57f4399 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.ServicePoint.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.Sockets.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.Sockets.dll new file mode 100755 index 0000000..5e4bfa5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.Sockets.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.WebClient.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.WebClient.dll new file mode 100755 index 0000000..460ab43 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.WebClient.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.WebHeaderCollection.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.WebHeaderCollection.dll new file mode 100755 index 0000000..cc4d322 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.WebHeaderCollection.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.WebProxy.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.WebProxy.dll new file mode 100755 index 0000000..5a77681 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.WebProxy.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.WebSockets.Client.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.WebSockets.Client.dll new file mode 100755 index 0000000..e779309 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.WebSockets.Client.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.WebSockets.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.WebSockets.dll new file mode 100755 index 0000000..c26bfce Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.WebSockets.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Net.dll b/bin/Debug/net7.0/linux-x64/publish/System.Net.dll new file mode 100755 index 0000000..50f2648 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Net.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Numerics.Vectors.dll b/bin/Debug/net7.0/linux-x64/publish/System.Numerics.Vectors.dll new file mode 100755 index 0000000..e064a03 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Numerics.Vectors.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Numerics.dll b/bin/Debug/net7.0/linux-x64/publish/System.Numerics.dll new file mode 100755 index 0000000..9e077e9 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Numerics.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.ObjectModel.dll b/bin/Debug/net7.0/linux-x64/publish/System.ObjectModel.dll new file mode 100755 index 0000000..f2074ab Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.ObjectModel.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Private.CoreLib.dll b/bin/Debug/net7.0/linux-x64/publish/System.Private.CoreLib.dll new file mode 100755 index 0000000..556ed6d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Private.CoreLib.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Private.DataContractSerialization.dll b/bin/Debug/net7.0/linux-x64/publish/System.Private.DataContractSerialization.dll new file mode 100755 index 0000000..1bb12bb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Private.DataContractSerialization.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Private.Uri.dll b/bin/Debug/net7.0/linux-x64/publish/System.Private.Uri.dll new file mode 100755 index 0000000..6af808f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Private.Uri.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Private.Xml.Linq.dll b/bin/Debug/net7.0/linux-x64/publish/System.Private.Xml.Linq.dll new file mode 100755 index 0000000..3de3e67 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Private.Xml.Linq.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Private.Xml.dll b/bin/Debug/net7.0/linux-x64/publish/System.Private.Xml.dll new file mode 100755 index 0000000..7f999a7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Private.Xml.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Reflection.DispatchProxy.dll b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.DispatchProxy.dll new file mode 100755 index 0000000..8f7f5ff Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.DispatchProxy.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.ILGeneration.dll b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.ILGeneration.dll new file mode 100755 index 0000000..add1936 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.ILGeneration.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.Lightweight.dll b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.Lightweight.dll new file mode 100755 index 0000000..03abb5f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.Lightweight.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.dll b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.dll new file mode 100755 index 0000000..0d76c2b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Extensions.dll b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Extensions.dll new file mode 100755 index 0000000..2eb42c6 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Extensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Metadata.dll b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Metadata.dll new file mode 100755 index 0000000..45fe4e5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Metadata.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Primitives.dll b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Primitives.dll new file mode 100755 index 0000000..46588c4 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Reflection.TypeExtensions.dll b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.TypeExtensions.dll new file mode 100755 index 0000000..df97db7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.TypeExtensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Reflection.dll b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.dll new file mode 100755 index 0000000..54eed49 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Reflection.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Resources.Reader.dll b/bin/Debug/net7.0/linux-x64/publish/System.Resources.Reader.dll new file mode 100755 index 0000000..d35ddc0 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Resources.Reader.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Resources.ResourceManager.dll b/bin/Debug/net7.0/linux-x64/publish/System.Resources.ResourceManager.dll new file mode 100755 index 0000000..c70f500 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Resources.ResourceManager.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Resources.Writer.dll b/bin/Debug/net7.0/linux-x64/publish/System.Resources.Writer.dll new file mode 100755 index 0000000..16bb9db Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Resources.Writer.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.CompilerServices.Unsafe.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 0000000..a2cb7e4 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.CompilerServices.VisualC.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.CompilerServices.VisualC.dll new file mode 100755 index 0000000..acd18ac Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Extensions.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Extensions.dll new file mode 100755 index 0000000..95c7998 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Extensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Handles.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Handles.dll new file mode 100755 index 0000000..33852fb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Handles.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.JavaScript.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.JavaScript.dll new file mode 100755 index 0000000..ba32e16 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100755 index 0000000..2813650 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.dll new file mode 100755 index 0000000..d2f8b1b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Intrinsics.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Intrinsics.dll new file mode 100755 index 0000000..cbf8593 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Intrinsics.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Loader.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Loader.dll new file mode 100755 index 0000000..399a539 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Loader.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Numerics.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Numerics.dll new file mode 100755 index 0000000..f49bcce Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Numerics.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Formatters.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Formatters.dll new file mode 100755 index 0000000..fa34049 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Formatters.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Json.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Json.dll new file mode 100755 index 0000000..ccc265c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Json.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Primitives.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Primitives.dll new file mode 100755 index 0000000..493b3a7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Xml.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Xml.dll new file mode 100755 index 0000000..d13511a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.dll new file mode 100755 index 0000000..9638628 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Runtime.dll b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.dll new file mode 100755 index 0000000..003ff64 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Runtime.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.AccessControl.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.AccessControl.dll new file mode 100755 index 0000000..128e4e0 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.AccessControl.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Claims.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Claims.dll new file mode 100755 index 0000000..18c11ae Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Claims.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Algorithms.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Algorithms.dll new file mode 100755 index 0000000..c2c1dfc Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Cng.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Cng.dll new file mode 100755 index 0000000..cdc3cbb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Cng.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Csp.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Csp.dll new file mode 100755 index 0000000..bc5bffb Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Csp.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Encoding.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Encoding.dll new file mode 100755 index 0000000..0f2a809 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.OpenSsl.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.OpenSsl.dll new file mode 100755 index 0000000..d0892a1 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.OpenSsl.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Primitives.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Primitives.dll new file mode 100755 index 0000000..0e0dd9a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.X509Certificates.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.X509Certificates.dll new file mode 100755 index 0000000..475c11d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.dll new file mode 100755 index 0000000..44ab412 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Principal.Windows.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Principal.Windows.dll new file mode 100755 index 0000000..3c006fc Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Principal.Windows.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.Principal.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.Principal.dll new file mode 100755 index 0000000..4f5d47e Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.Principal.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.SecureString.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.SecureString.dll new file mode 100755 index 0000000..2f11df9 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.SecureString.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Security.dll b/bin/Debug/net7.0/linux-x64/publish/System.Security.dll new file mode 100755 index 0000000..5cd145b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Security.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.ServiceModel.Web.dll b/bin/Debug/net7.0/linux-x64/publish/System.ServiceModel.Web.dll new file mode 100755 index 0000000..c9551a2 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.ServiceModel.Web.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.ServiceProcess.dll b/bin/Debug/net7.0/linux-x64/publish/System.ServiceProcess.dll new file mode 100755 index 0000000..2ff7313 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.ServiceProcess.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.CodePages.dll b/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.CodePages.dll new file mode 100755 index 0000000..577376f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.CodePages.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.Extensions.dll b/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.Extensions.dll new file mode 100755 index 0000000..ccd8819 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.Extensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.dll b/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.dll new file mode 100755 index 0000000..88916e8 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Text.Encodings.Web.dll b/bin/Debug/net7.0/linux-x64/publish/System.Text.Encodings.Web.dll new file mode 100755 index 0000000..f00ced6 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Text.Encodings.Web.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Text.Json.dll b/bin/Debug/net7.0/linux-x64/publish/System.Text.Json.dll new file mode 100755 index 0000000..57a4f20 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Text.Json.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Text.RegularExpressions.dll b/bin/Debug/net7.0/linux-x64/publish/System.Text.RegularExpressions.dll new file mode 100755 index 0000000..95ee33b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Text.RegularExpressions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Threading.Channels.dll b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Channels.dll new file mode 100755 index 0000000..e7fc02d Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Channels.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Threading.Overlapped.dll b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Overlapped.dll new file mode 100755 index 0000000..1b5004c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Overlapped.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Dataflow.dll b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Dataflow.dll new file mode 100755 index 0000000..4cfe59e Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Dataflow.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Extensions.dll b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Extensions.dll new file mode 100755 index 0000000..94dd6aa Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Extensions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Parallel.dll b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Parallel.dll new file mode 100755 index 0000000..22b0f08 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.dll b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.dll new file mode 100755 index 0000000..bac45ef Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Threading.Thread.dll b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Thread.dll new file mode 100755 index 0000000..759fd0c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Thread.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Threading.ThreadPool.dll b/bin/Debug/net7.0/linux-x64/publish/System.Threading.ThreadPool.dll new file mode 100755 index 0000000..d27039b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Threading.ThreadPool.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Threading.Timer.dll b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Timer.dll new file mode 100755 index 0000000..2622f63 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Threading.Timer.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Threading.dll b/bin/Debug/net7.0/linux-x64/publish/System.Threading.dll new file mode 100755 index 0000000..81187b7 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Threading.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Transactions.Local.dll b/bin/Debug/net7.0/linux-x64/publish/System.Transactions.Local.dll new file mode 100755 index 0000000..9ec3f97 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Transactions.Local.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Transactions.dll b/bin/Debug/net7.0/linux-x64/publish/System.Transactions.dll new file mode 100755 index 0000000..07883cf Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Transactions.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.ValueTuple.dll b/bin/Debug/net7.0/linux-x64/publish/System.ValueTuple.dll new file mode 100755 index 0000000..aea3678 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.ValueTuple.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Web.HttpUtility.dll b/bin/Debug/net7.0/linux-x64/publish/System.Web.HttpUtility.dll new file mode 100755 index 0000000..2a43f43 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Web.HttpUtility.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Web.dll b/bin/Debug/net7.0/linux-x64/publish/System.Web.dll new file mode 100755 index 0000000..22248f9 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Web.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Windows.dll b/bin/Debug/net7.0/linux-x64/publish/System.Windows.dll new file mode 100755 index 0000000..0422dfa Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Windows.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Xml.Linq.dll b/bin/Debug/net7.0/linux-x64/publish/System.Xml.Linq.dll new file mode 100755 index 0000000..4d5fe9f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Xml.Linq.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Xml.ReaderWriter.dll b/bin/Debug/net7.0/linux-x64/publish/System.Xml.ReaderWriter.dll new file mode 100755 index 0000000..c9b6a37 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Xml.ReaderWriter.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Xml.Serialization.dll b/bin/Debug/net7.0/linux-x64/publish/System.Xml.Serialization.dll new file mode 100755 index 0000000..a33d415 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Xml.Serialization.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Xml.XDocument.dll b/bin/Debug/net7.0/linux-x64/publish/System.Xml.XDocument.dll new file mode 100755 index 0000000..f8d4a32 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Xml.XDocument.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Xml.XPath.XDocument.dll b/bin/Debug/net7.0/linux-x64/publish/System.Xml.XPath.XDocument.dll new file mode 100755 index 0000000..3ee501f Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Xml.XPath.XDocument.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Xml.XPath.dll b/bin/Debug/net7.0/linux-x64/publish/System.Xml.XPath.dll new file mode 100755 index 0000000..94948dd Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Xml.XPath.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Xml.XmlDocument.dll b/bin/Debug/net7.0/linux-x64/publish/System.Xml.XmlDocument.dll new file mode 100755 index 0000000..2a75235 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Xml.XmlDocument.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Xml.XmlSerializer.dll b/bin/Debug/net7.0/linux-x64/publish/System.Xml.XmlSerializer.dll new file mode 100755 index 0000000..cb6e6e0 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Xml.XmlSerializer.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.Xml.dll b/bin/Debug/net7.0/linux-x64/publish/System.Xml.dll new file mode 100755 index 0000000..559dd62 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.Xml.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/System.dll b/bin/Debug/net7.0/linux-x64/publish/System.dll new file mode 100755 index 0000000..a975a68 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/System.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/WindowsBase.dll b/bin/Debug/net7.0/linux-x64/publish/WindowsBase.dll new file mode 100755 index 0000000..c728090 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/WindowsBase.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/callfi b/bin/Debug/net7.0/linux-x64/publish/callfi new file mode 100755 index 0000000..830ad65 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/callfi differ diff --git a/bin/Debug/net7.0/linux-x64/publish/callfi.deps.json b/bin/Debug/net7.0/linux-x64/publish/callfi.deps.json new file mode 100644 index 0000000..dc4d88b --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/callfi.deps.json @@ -0,0 +1,4060 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0/linux-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": {}, + ".NETCoreApp,Version=v7.0/linux-x64": { + "callfi/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4", + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "7.0.20" + }, + "runtime": { + "callfi.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/7.0.20": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.2024.26716" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.AppContext.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Buffers.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Collections.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Console.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Data.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Formats.Tar.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Globalization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.IO.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Linq.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Memory.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Http.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Security.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Reflection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.InteropServices.JavaScript.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Threading.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.2024.26716" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "7.0.2024.26716" + } + }, + "native": { + "createdump": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Globalization.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.IO.Compression.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Net.Security.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Security.Cryptography.Native.OpenSsl.so": { + "fileVersion": "0.0.0.0" + }, + "libclrgc.so": { + "fileVersion": "0.0.0.0" + }, + "libclrjit.so": { + "fileVersion": "0.0.0.0" + }, + "libcoreclr.so": { + "fileVersion": "0.0.0.0" + }, + "libcoreclrtraceptprovider.so": { + "fileVersion": "0.0.0.0" + }, + "libhostfxr.so": { + "fileVersion": "0.0.0.0" + }, + "libhostpolicy.so": { + "fileVersion": "0.0.0.0" + }, + "libmscordaccore.so": { + "fileVersion": "0.0.0.0" + }, + "libmscordbi.so": { + "fileVersion": "0.0.0.0" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.1": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.Microsoft.Win32.Primitives": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": {}, + "runtime.any.System.Globalization/4.3.0": {}, + "runtime.any.System.Globalization.Calendars/4.3.0": {}, + "runtime.any.System.IO/4.3.0": {}, + "runtime.any.System.Reflection/4.3.0": {}, + "runtime.any.System.Reflection.Primitives/4.3.0": {}, + "runtime.any.System.Resources.ResourceManager/4.3.0": {}, + "runtime.any.System.Runtime/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0" + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": {}, + "runtime.any.System.Runtime.InteropServices/4.3.0": {}, + "runtime.any.System.Text.Encoding/4.3.0": {}, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": {}, + "runtime.any.System.Threading.Tasks/4.3.0": {}, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.unix.Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.IO.FileSystem/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Private.Uri/4.3.0": { + "dependencies": { + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Runtime.Extensions/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.System.Diagnostics.Debug": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.IO.FileSystem": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.3.0" + } + }, + "System.Private.Uri/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.unix.System.Private.Uri": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + } + } + } + }, + "libraries": { + "callfi/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/7.0.20": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==", + "path": "microsoft.netcore.platforms/1.1.1", + "hashPath": "microsoft.netcore.platforms.1.1.1.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "path": "runtime.any.system.collections/4.3.0", + "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", + "path": "runtime.any.system.diagnostics.tracing/4.3.0", + "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "path": "runtime.any.system.globalization/4.3.0", + "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", + "path": "runtime.any.system.globalization.calendars/4.3.0", + "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "path": "runtime.any.system.io/4.3.0", + "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "path": "runtime.any.system.reflection/4.3.0", + "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "path": "runtime.any.system.runtime/4.3.0", + "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "path": "runtime.any.system.runtime.handles/4.3.0", + "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "path": "runtime.any.system.text.encoding/4.3.0", + "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", + "path": "runtime.any.system.text.encoding.extensions/4.3.0", + "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "path": "runtime.any.system.threading.tasks/4.3.0", + "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.unix.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2mI2Mfq+CVatgr4RWGvAWBjoCfUafy6VNFU7G9OA52DjO8x/okfIbsEq2UPgeGfdpO7X5gmPXKT8slx0tn0Mhw==", + "path": "runtime.unix.microsoft.win32.primitives/4.3.0", + "hashPath": "runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WV8KLRHWVUVUDduFnvGMHt0FsEt2wK6xPl1EgDKlaMx2KnZ43A/O0GzP8wIuvAC7mq4T9V1mm90r+PXkL9FPdQ==", + "path": "runtime.unix.system.diagnostics.debug/4.3.0", + "hashPath": "runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ajmTcjrqc3vgV1TH54DRioshbEniaFbOAJ0kReGuNsp9uIcqYle0RmUo6+Qlwqe3JIs4TDxgnqs3UzX3gRJ1rA==", + "path": "runtime.unix.system.io.filesystem/4.3.0", + "hashPath": "runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AZcRXhH7Gamr+bckUfX3iHefPIrujJTt9XWQWo0elNiP1SNasX0KBWINZkDKY0GsOrsyJ7cB4MgIRTZzLlsTKg==", + "path": "runtime.unix.system.net.primitives/4.3.0", + "hashPath": "runtime.unix.system.net.primitives.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ooWzobr5RAq34r9uan1r/WPXJYG1XWy9KanrxNvEnBzbFdQbMG7Y3bVi4QxR7xZMNLOxLLTAyXvnSkfj5boZSg==", + "path": "runtime.unix.system.private.uri/4.3.0", + "hashPath": "runtime.unix.system.private.uri.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zQiTBVpiLftTQZW8GFsV0gjYikB1WMkEPIxF5O6RkUrSV/OgvRRTYgeFQha/0keBpuS0HYweraGRwhfhJ7dj7w==", + "path": "runtime.unix.system.runtime.extensions/4.3.0", + "hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "path": "system.private.uri/4.3.0", + "hashPath": "system.private.uri.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + } + }, + "runtimes": { + "alpine-x64": [ + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.10-x64": [ + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.11-x64": [ + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.12-x64": [ + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.13-x64": [ + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.14-x64": [ + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.15-x64": [ + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.16-x64": [ + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.17-x64": [ + "alpine.3.17", + "alpine.3.16-x64", + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.18-x64": [ + "alpine.3.18", + "alpine.3.17-x64", + "alpine.3.17", + "alpine.3.16-x64", + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.6-x64": [ + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.7-x64": [ + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.8-x64": [ + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.9-x64": [ + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android-x64": [ + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.21-x64": [ + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.22-x64": [ + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.23-x64": [ + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.24-x64": [ + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.25-x64": [ + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.26-x64": [ + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.27-x64": [ + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.28-x64": [ + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.29-x64": [ + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.30-x64": [ + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.31-x64": [ + "android.31", + "android.30-x64", + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.32-x64": [ + "android.32", + "android.31-x64", + "android.31", + "android.30-x64", + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "arch-x64": [ + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos-x64": [ + "centos", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.7-x64": [ + "centos.7", + "centos-x64", + "rhel.7-x64", + "centos", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.8-x64": [ + "centos.8", + "centos-x64", + "rhel.8-x64", + "centos", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.9-x64": [ + "centos.9", + "centos-x64", + "rhel.9-x64", + "centos", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian-x64": [ + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.10-x64": [ + "debian.10", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.11-x64": [ + "debian.11", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.12-x64": [ + "debian.12", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.8-x64": [ + "debian.8", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.9-x64": [ + "debian.9", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "exherbo-x64": [ + "exherbo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora-x64": [ + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.23-x64": [ + "fedora.23", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.24-x64": [ + "fedora.24", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.25-x64": [ + "fedora.25", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.26-x64": [ + "fedora.26", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.27-x64": [ + "fedora.27", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.28-x64": [ + "fedora.28", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.29-x64": [ + "fedora.29", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.30-x64": [ + "fedora.30", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.31-x64": [ + "fedora.31", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.32-x64": [ + "fedora.32", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.33-x64": [ + "fedora.33", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.34-x64": [ + "fedora.34", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.35-x64": [ + "fedora.35", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.36-x64": [ + "fedora.36", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.37-x64": [ + "fedora.37", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.38-x64": [ + "fedora.38", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.39-x64": [ + "fedora.39", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "gentoo-x64": [ + "gentoo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-bionic-x64": [ + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-musl-x64": [ + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-x64": [ + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17-x64": [ + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.1-x64": [ + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.2-x64": [ + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.3-x64": [ + "linuxmint.17.3", + "linuxmint.17.2-x64", + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18-x64": [ + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.1-x64": [ + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.2-x64": [ + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.3-x64": [ + "linuxmint.18.3", + "linuxmint.18.2-x64", + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19-x64": [ + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.1-x64": [ + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.2-x64": [ + "linuxmint.19.2", + "linuxmint.19.1-x64", + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "manjaro-x64": [ + "manjaro", + "arch-x64", + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "miraclelinux-x64": [ + "miraclelinux", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "miraclelinux.8-x64": [ + "miraclelinux.8", + "miraclelinux-x64", + "rhel.8-x64", + "miraclelinux", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "miraclelinux.9-x64": [ + "miraclelinux.9", + "miraclelinux-x64", + "rhel.9-x64", + "miraclelinux", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol-x64": [ + "ol", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7-x64": [ + "ol.7", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.0-x64": [ + "ol.7.0", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.1-x64": [ + "ol.7.1", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.2-x64": [ + "ol.7.2", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.3-x64": [ + "ol.7.3", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.4-x64": [ + "ol.7.4", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.5-x64": [ + "ol.7.5", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.6-x64": [ + "ol.7.6", + "ol.7.5-x64", + "rhel.7.6-x64", + "ol.7.5", + "rhel.7.6", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8-x64": [ + "ol.8", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8.0-x64": [ + "ol.8.0", + "ol.8-x64", + "rhel.8.0-x64", + "ol.8", + "rhel.8.0", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse-x64": [ + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.13.2-x64": [ + "opensuse.13.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.0-x64": [ + "opensuse.15.0", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.1-x64": [ + "opensuse.15.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.1-x64": [ + "opensuse.42.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.2-x64": [ + "opensuse.42.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.3-x64": [ + "opensuse.42.3", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel-x64": [ + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.6-x64": [ + "rhel.6", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7-x64": [ + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.0-x64": [ + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.1-x64": [ + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.2-x64": [ + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.3-x64": [ + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.4-x64": [ + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.5-x64": [ + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.6-x64": [ + "rhel.7.6", + "rhel.7.5-x64", + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8-x64": [ + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.0-x64": [ + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.1-x64": [ + "rhel.8.1", + "rhel.8.0-x64", + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.9-x64": [ + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky-x64": [ + "rocky", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.8-x64": [ + "rocky.8", + "rocky-x64", + "rhel.8-x64", + "rocky", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.9-x64": [ + "rocky.9", + "rocky-x64", + "rhel.9-x64", + "rocky", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles-x64": [ + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12-x64": [ + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.1-x64": [ + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.2-x64": [ + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.3-x64": [ + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.4-x64": [ + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15-x64": [ + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15.1-x64": [ + "sles.15.1", + "sles.15-x64", + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu-x64": [ + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.04-x64": [ + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.10-x64": [ + "ubuntu.14.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.04-x64": [ + "ubuntu.15.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.10-x64": [ + "ubuntu.15.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.04-x64": [ + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.10-x64": [ + "ubuntu.16.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.04-x64": [ + "ubuntu.17.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.10-x64": [ + "ubuntu.17.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.04-x64": [ + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.10-x64": [ + "ubuntu.18.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.04-x64": [ + "ubuntu.19.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.10-x64": [ + "ubuntu.19.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.04-x64": [ + "ubuntu.20.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.10-x64": [ + "ubuntu.20.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.04-x64": [ + "ubuntu.21.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.10-x64": [ + "ubuntu.21.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.22.04-x64": [ + "ubuntu.22.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.22.10-x64": [ + "ubuntu.22.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.23.04-x64": [ + "ubuntu.23.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.23.10-x64": [ + "ubuntu.23.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/callfi.dll b/bin/Debug/net7.0/linux-x64/publish/callfi.dll new file mode 100644 index 0000000..fef89a2 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/callfi.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/callfi.pdb b/bin/Debug/net7.0/linux-x64/publish/callfi.pdb new file mode 100644 index 0000000..c03cc41 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/callfi.pdb differ diff --git a/bin/Debug/net7.0/linux-x64/publish/callfi.runtimeconfig.json b/bin/Debug/net7.0/linux-x64/publish/callfi.runtimeconfig.json new file mode 100644 index 0000000..49938c6 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/callfi.runtimeconfig.json @@ -0,0 +1,11 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "7.0.20" + } + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/createdump b/bin/Debug/net7.0/linux-x64/publish/createdump new file mode 100755 index 0000000..f04c4c3 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/createdump differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libSystem.Globalization.Native.so b/bin/Debug/net7.0/linux-x64/publish/libSystem.Globalization.Native.so new file mode 100755 index 0000000..3d80a82 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libSystem.Globalization.Native.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libSystem.IO.Compression.Native.so b/bin/Debug/net7.0/linux-x64/publish/libSystem.IO.Compression.Native.so new file mode 100755 index 0000000..4ba7248 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libSystem.IO.Compression.Native.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libSystem.Native.so b/bin/Debug/net7.0/linux-x64/publish/libSystem.Native.so new file mode 100755 index 0000000..cf8739b Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libSystem.Native.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libSystem.Net.Security.Native.so b/bin/Debug/net7.0/linux-x64/publish/libSystem.Net.Security.Native.so new file mode 100755 index 0000000..6f4660c Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libSystem.Net.Security.Native.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libSystem.Security.Cryptography.Native.OpenSsl.so b/bin/Debug/net7.0/linux-x64/publish/libSystem.Security.Cryptography.Native.OpenSsl.so new file mode 100755 index 0000000..bd35d93 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libSystem.Security.Cryptography.Native.OpenSsl.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libclrgc.so b/bin/Debug/net7.0/linux-x64/publish/libclrgc.so new file mode 100755 index 0000000..b679196 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libclrgc.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libclrjit.so b/bin/Debug/net7.0/linux-x64/publish/libclrjit.so new file mode 100755 index 0000000..100f789 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libclrjit.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libcoreclr.so b/bin/Debug/net7.0/linux-x64/publish/libcoreclr.so new file mode 100755 index 0000000..76f36ce Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libcoreclr.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libcoreclrtraceptprovider.so b/bin/Debug/net7.0/linux-x64/publish/libcoreclrtraceptprovider.so new file mode 100755 index 0000000..e206855 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libcoreclrtraceptprovider.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libhostfxr.so b/bin/Debug/net7.0/linux-x64/publish/libhostfxr.so new file mode 100755 index 0000000..8430523 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libhostfxr.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libhostpolicy.so b/bin/Debug/net7.0/linux-x64/publish/libhostpolicy.so new file mode 100755 index 0000000..19254c0 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libhostpolicy.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libmscordaccore.so b/bin/Debug/net7.0/linux-x64/publish/libmscordaccore.so new file mode 100755 index 0000000..ab059d5 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libmscordaccore.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/libmscordbi.so b/bin/Debug/net7.0/linux-x64/publish/libmscordbi.so new file mode 100755 index 0000000..88fd7a8 Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/libmscordbi.so differ diff --git a/bin/Debug/net7.0/linux-x64/publish/mscorlib.dll b/bin/Debug/net7.0/linux-x64/publish/mscorlib.dll new file mode 100755 index 0000000..eac265a Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/mscorlib.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/netstandard.dll b/bin/Debug/net7.0/linux-x64/publish/netstandard.dll new file mode 100755 index 0000000..f1ea6fc Binary files /dev/null and b/bin/Debug/net7.0/linux-x64/publish/netstandard.dll differ diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-1-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-10-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-11-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-12-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-13-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-2.txt new file mode 100644 index 0000000..9e97ce8 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-2.txt @@ -0,0 +1,18 @@ +{ + "data": [ + { + "author_id": "1438405462811189251", + "text": "#Tesla will land soon on the moon\n$TSLA\n\n#CallFi #CallingIt", + "created_at": "2024-06-17T06:02:46Z", + "id": "1802582640681271349", + "edit_history_tweet_ids": [ + "1802582640681271349" + ] + } + ], + "meta": { + "newest_id": "1802582640681271349", + "oldest_id": "1802582640681271349", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-14-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-25.txt new file mode 100644 index 0000000..3ba51c5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-25.txt @@ -0,0 +1,18 @@ +{ + "data": [ + { + "text": "This is a test\n\n$Milly \n\n4dL4fs7TNNJ2cCchPhvH9VptLH2NPjKViKrLBNi9pump\n\n#Callfi #callingit https://t.co/xFFShlpX0p", + "author_id": "1366296028794605573", + "created_at": "2024-06-17T07:24:57Z", + "edit_history_tweet_ids": [ + "1802603322215657815" + ], + "id": "1802603322215657815" + } + ], + "meta": { + "newest_id": "1802603322215657815", + "oldest_id": "1802603322215657815", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-15-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-16-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-17-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-18-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-19-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-2-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-20-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-21-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-22-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-23-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-3-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-4-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-5-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-6-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-7-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-8-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_17-9-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-0-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-1-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-10-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-11-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-12-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-13-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-14-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-15-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-16-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-17-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-18-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-19-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-2-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-20-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-21-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-22-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-23-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-3-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-4-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-5-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-6-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-7-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-8-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_18-9-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-0-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-1-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-10-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-11-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-12-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-13-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-14-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-15-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-16-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-17-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-18-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-19-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-2-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-20-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-21-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-22-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-23-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-3-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-4-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-5-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-6-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-7-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-8-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_19-9-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-0-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-1-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-10-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-11-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-12-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-13-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-14-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-15-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-16-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-17-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-18-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-19-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-2-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-20-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-3-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-4-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-5-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-6-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-7-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-8-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-0.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-1.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-10.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-11.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-12.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-13.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-14.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-15.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-16.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-17.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-18.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-19.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-2.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-20.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-21.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-22.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-23.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-24.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-25.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-26.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-27.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-28.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-29.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-3.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-30.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-31.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-32.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-33.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-34.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-35.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-36.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-37.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-38.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-39.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-4.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-40.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-41.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-42.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-43.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-44.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-45.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-46.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-47.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-48.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-49.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-5.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-50.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-51.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-52.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-53.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-54.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-55.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-56.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-57.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-58.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-59.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-6.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-7.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-8.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-9.txt b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/linux-x64/publish/results_2024_6_20-9-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/publish/Newtonsoft.Json.dll b/bin/Debug/net7.0/publish/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/bin/Debug/net7.0/publish/Newtonsoft.Json.dll differ diff --git a/bin/Debug/net7.0/publish/callfi b/bin/Debug/net7.0/publish/callfi new file mode 100755 index 0000000..e0aac94 Binary files /dev/null and b/bin/Debug/net7.0/publish/callfi differ diff --git a/bin/Debug/net7.0/publish/callfi.deps.json b/bin/Debug/net7.0/publish/callfi.deps.json new file mode 100644 index 0000000..f991a9a --- /dev/null +++ b/bin/Debug/net7.0/publish/callfi.deps.json @@ -0,0 +1,777 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "callfi/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4" + }, + "runtime": { + "callfi.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.1": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + } + } + }, + "libraries": { + "callfi/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==", + "path": "microsoft.netcore.platforms/1.1.1", + "hashPath": "microsoft.netcore.platforms.1.1.1.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/publish/callfi.dll b/bin/Debug/net7.0/publish/callfi.dll new file mode 100644 index 0000000..6bb78eb Binary files /dev/null and b/bin/Debug/net7.0/publish/callfi.dll differ diff --git a/bin/Debug/net7.0/publish/callfi.pdb b/bin/Debug/net7.0/publish/callfi.pdb new file mode 100644 index 0000000..9032efc Binary files /dev/null and b/bin/Debug/net7.0/publish/callfi.pdb differ diff --git a/bin/Debug/net7.0/publish/callfi.runtimeconfig.json b/bin/Debug/net7.0/publish/callfi.runtimeconfig.json new file mode 100644 index 0000000..184be8b --- /dev/null +++ b/bin/Debug/net7.0/publish/callfi.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_14-23-32.txt b/bin/Debug/net7.0/results_2024_6_14-23-32.txt new file mode 100644 index 0000000..9db2514 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_14-23-32.txt @@ -0,0 +1,80 @@ +{ + "data": [ + { + "edit_history_tweet_ids": [ + "1801638916157751382" + ], + "id": "1801638916157751382", + "text": "CoC 「傍若無人」\nKP:まろん\nPL: BAUM、おちゃ\n\nEND1 でシナリオクリアでした🍀\nお兄さん達とってもJKだった…… https://t.co/YK7AQJagj5" + }, + { + "edit_history_tweet_ids": [ + "1801638898164240780" + ], + "id": "1801638898164240780", + "text": "coc「キューティーキャンディーカラー」\nKP\nあいさん\nKPC/SKP\n当犬 歩/らいとさん\nPC/PL\n福付 心/一般人田中\n«END-1、両生還»\n\n「私、力には自信があるんです!」\n\nはーーー、楽しかったー!!!!\n出目がすごいかったです()\n歩さん好きだよーーー!!!!! https://t.co/TUOyNZtWDv" + }, + { + "edit_history_tweet_ids": [ + "1801638892439015491" + ], + "id": "1801638892439015491", + "text": "RT @sTRPGm: 🎊🎊CoCシナリオセール中🎊🎊\n\n▽BOOTH▽\nhttps://t.co/bKebe8BcrW\n\n6月16日は作者が誕生日なので自分への記念で各種シナリオセール中です🎂🍾\n普段非公開のシナリオ2作も期間中に限定公開してます\n\nセールと限定公開は2024…" + }, + { + "edit_history_tweet_ids": [ + "1801638892019532148" + ], + "id": "1801638892019532148", + "text": "RT @trpg_natsu: れいこさんKP,CoC『デウス・エクス・マキナは死んだ』HO1のカミで通過中してます!!KPすまんかった https://t.co/UmDxQF3VMf" + }, + { + "edit_history_tweet_ids": [ + "1801638879730221388" + ], + "id": "1801638879730221388", + "text": "RT @sTRPGm: 🎊🎊CoCシナリオセール中🎊🎊\n\n▽BOOTH▽\nhttps://t.co/bKebe8BcrW\n\n6月16日は作者が誕生日なので自分への記念で各種シナリオセール中です🎂🍾\n普段非公開のシナリオ2作も期間中に限定公開してます\n\nセールと限定公開は2024…" + }, + { + "edit_history_tweet_ids": [ + "1801638865851269257" + ], + "id": "1801638865851269257", + "text": "RT @socialmediamesa: @DTopoulos @Rach_IC @BlehmLawAZ If \"estimates\" are ok then what is the point of chain of custody? You think using a sy…" + }, + { + "edit_history_tweet_ids": [ + "1801638856602828984" + ], + "id": "1801638856602828984", + "text": "昨日からのCoC配信を見に来てくれた人の子ら、amicaたちよ!ありがとうですじゃー!!\nノル様と沢山RP出来て出目も暴れて楽しかったのじゃ!\n\n是非アーカイブ視聴、高評価宜しくですじゃ!!\n#捨てマオ https://t.co/aJuB8LrVN7" + }, + { + "edit_history_tweet_ids": [ + "1801638849757778208" + ], + "id": "1801638849757778208", + "text": "CoC【片鱗】 トドノツマリ海峡 様\n\nKP / こくや 様\n\nPL /\nHO1 菊原土曜日:プラナリア 様\nHO2 ヒロ:さめざめ\n\nEND B-2\n\nこくや様のもとで暖かく見守られながら… 胸がいっぱいになったシナリオ 楽しかったねぇ… ありがとうございました!!!\n\n「どようび。…アイス、食べよう」 https://t.co/cBNEeJrqeF" + }, + { + "edit_history_tweet_ids": [ + "1801638841406918930" + ], + "id": "1801638841406918930", + "text": "RT @rabe1567: CoC『枯れゆく花々を胸に』 KP:からす\nHO1:九十九慶(PL:つるぎさん)\nHO2:雪平紡(PL:かにさん)\nHO3:鐵敬助 (PL: ぴかさん)\nHO4:斎藤潤 (ななやさん)\n\n始まりました九十九班!はい!まだホントに入口も入口でして…さあ…" + }, + { + "edit_history_tweet_ids": [ + "1801638833387409605" + ], + "id": "1801638833387409605", + "text": "2日目セーブ❗️シナリオがどうもエロシです😁って殴ってくる!!!そんでもって反対からcocが殴ってくる!!!ウワーーー" + } + ], + "meta": { + "newest_id": "1801638916157751382", + "oldest_id": "1801638833387409605", + "result_count": 10, + "next_token": "b26v89c19zqg8o3frqlsni6fwj6ei59tnkfywa3etmwzh" + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_15-0-30.txt b/bin/Debug/net7.0/results_2024_6_15-0-30.txt new file mode 100644 index 0000000..2bb7e92 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_15-0-30.txt @@ -0,0 +1,80 @@ +{ + "data": [ + { + "edit_history_tweet_ids": [ + "1801653367258681718" + ], + "id": "1801653367258681718", + "text": "@AX_kaz1221 @mushmnkurakura @ranran_coc プロフィールの確認おねがいします🤦‍♀️" + }, + { + "edit_history_tweet_ids": [ + "1801653359923106212" + ], + "id": "1801653359923106212", + "text": "CoC「同じ空には昇れない」\nKP:kanekoex\nHO太陽:大空 昇 (幻魔さん)\nHO月 :ラミア・ローレンス(白黒まろさん)\n\nエンドC-1A\n回させていただきました!!!\n二人ともシナリオがぶっ刺さっていてKPとしてニヤニヤしてみることができました。\nハイ。正座でツイートしています。\nありがとうございました! https://t.co/63SpC5LInh" + }, + { + "edit_history_tweet_ids": [ + "1801653357620379814" + ], + "id": "1801653357620379814", + "text": "COC【鰯と柊】\n信者でまわってます!\n教祖様とお手手繋いで生還目指します!! https://t.co/0ReYvFJfbI" + }, + { + "edit_history_tweet_ids": [ + "1801653343192027562" + ], + "id": "1801653343192027562", + "text": "RT @imyour_seven: Video này thiếu sáng!\n\nCốc này về hơn trăm chiếc cho anh em, tuần tới về thêm cu giả và mấy món nhét đít nhé, đặt ở web h…" + }, + { + "edit_history_tweet_ids": [ + "1801653328020910317" + ], + "id": "1801653328020910317", + "text": "Sous coc https://t.co/6vijPIM19t" + }, + { + "edit_history_tweet_ids": [ + "1801653325341069459" + ], + "id": "1801653325341069459", + "text": "CoC「町葬屋怪異譚」第二話\nHO1:終雪 誰鐘/ゆるせさん\nHO2:境目 覗九/しゃりさん\nHO3:八木原 蘇芳/長谷川さん\nHO4:花橘端 夜雁/縹\n\n■夏-完!\n皆皆皆皆皆皆好好好好早会 https://t.co/Uejk8Tg6PC" + }, + { + "edit_history_tweet_ids": [ + "1801653318474993676" + ], + "id": "1801653318474993676", + "text": "RT @imyour_seven: Video này thiếu sáng!\n\nCốc này về hơn trăm chiếc cho anh em, tuần tới về thêm cu giả và mấy món nhét đít nhé, đặt ở web h…" + }, + { + "edit_history_tweet_ids": [ + "1801653314704261439" + ], + "id": "1801653314704261439", + "text": "@mushmnkurakura @ranran_coc \n素晴らしい青年です😎" + }, + { + "edit_history_tweet_ids": [ + "1801653311550144902" + ], + "id": "1801653311550144902", + "text": "CoC『レインレインダウンタウン』\n 作:とりPRO 様\n\nKPC/KP\n 日生 霖 / しーお\nPC/PL\n 天霧 曇 / こう\n\nTRUE_END https://t.co/W5BmTGFv7X" + }, + { + "edit_history_tweet_ids": [ + "1801653301584535658" + ], + "id": "1801653301584535658", + "text": "RT @imyour_seven: Tôi sục cặc - Bạn cũng thế nhé\n\nCiu giả https://t.co/t0lt6FE2ZK\nCốc thủ râm https://t.co/bRfcMtul41\nPốppơ https://t.co/4f…" + } + ], + "meta": { + "newest_id": "1801653367258681718", + "oldest_id": "1801653301584535658", + "result_count": 10, + "next_token": "b26v89c19zqg8o3frqlsni719rqu1t4tm05pog8izh3st" + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_15-18-57.txt b/bin/Debug/net7.0/results_2024_6_15-18-57.txt new file mode 100644 index 0000000..156e205 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_15-18-57.txt @@ -0,0 +1,90 @@ +{ + "data": [ + { + "edit_history_tweet_ids": [ + "1801931918193111080" + ], + "text": "RT @Style_coc: 🎁 SORTEO 🎁\n\n🤠 Skin Luchadora del Salvaje Oeste\n\n🔄 RT\n✅ Seguir @Style_coc \n🫂 Mencionar a 2 amigos\n\n🚨 Recuerda utilizar el COD…", + "id": "1801931918193111080", + "author_id": "707516380476796928" + }, + { + "edit_history_tweet_ids": [ + "1801931904041836606" + ], + "text": "魔が潜む夜開始!!\n素敵なサムネイルはじぇんりこ様が描かれたイラストを使わせていただきました!\n有難うございます!!\n\n【色猫卓CoC#19】魔が潜む夜~第一話【ゆっくりTRPG】 https://t.co/v6iNqfFsLb @YouTubeより https://t.co/W7fxylFmPs", + "id": "1801931904041836606", + "author_id": "2335246958" + }, + { + "edit_history_tweet_ids": [ + "1801931903152332871" + ], + "text": "RT @Style_coc: 🎁 SORTEO 🎁\n\n🤠 Skin Luchadora del Salvaje Oeste\n\n🔄 RT\n✅ Seguir @Style_coc \n🫂 Mencionar a 2 amigos\n\n🚨 Recuerda utilizar el COD…", + "id": "1801931903152332871", + "author_id": "1564701013" + }, + { + "edit_history_tweet_ids": [ + "1801931900879069674" + ], + "text": "@Style_coc @noviembre_rojo @evita_guerrera", + "id": "1801931900879069674", + "author_id": "707516380476796928" + }, + { + "edit_history_tweet_ids": [ + "1801931899939819826" + ], + "text": "CoC 桐と枸櫞\n\nKP うりのすけさん\nPL 月白\n\n両生還にて!!!!!!!!!新規で行ったらお付き合い開始した!!!!!!!!!!!!!!!!!!!!!!!!やったーーーーー!!!😭😭😭😭😭 https://t.co/nkM3Crximu", + "id": "1801931899939819826", + "author_id": "1762639173520179200" + }, + { + "edit_history_tweet_ids": [ + "1801931894248116468" + ], + "text": "RT @otonashi_CoC: 【CoC6版】Stray & 7's pe/Ha\n\n-アングラ×秘匿HO×3PL-\n\n治安の悪い街の裏路地に住む探索者たちが、街の平和や色んなものを守るために奔走するシナリオです。\n秘匿HOですが比較的クラシックな雰囲気かも。\n\n6/29(土…", + "id": "1801931894248116468", + "author_id": "1919648528" + }, + { + "edit_history_tweet_ids": [ + "1801931879454789987" + ], + "text": "RT @monodraco: 🏫高校生の探索者で遊んでみませんか?🏫\n\nスタッフこみねによるCoC6版❗️\nクトゥルフ神話TRPG(第6版) 【お前がちょうどいい】\n\n🔰TRPG未経験者さん大歓迎👏\n初心者さんにオススメです🔰\n\n⭕️1名様まで募集中⭕️\n6/20(木)11:3…", + "id": "1801931879454789987", + "author_id": "918544374492835841" + }, + { + "edit_history_tweet_ids": [ + "1801931879144423524" + ], + "text": "@H1N4_coc このっhmrちゃんは若葉を速攻で殺して狂気の浸食も速攻でとって高いsanで日常を生きてる", + "id": "1801931879144423524", + "author_id": "1376827351607078912" + }, + { + "edit_history_tweet_ids": [ + "1801931870898127223" + ], + "text": "RT @sorauta35: 【CoC】猟犬の口跡【刑事シナリオ】【SPLL:E198814】 | なめうたふれんず https://t.co/tudL9xuaxq #booth_pm \n#11_Dogs報告書_2023\n群像劇×バディ捜査×冬\n\nこの頃、犯罪の認知件数が増えて…", + "id": "1801931870898127223", + "author_id": "816769510183055360" + }, + { + "edit_history_tweet_ids": [ + "1801931843907850405" + ], + "text": "Alo mày đang đâu v ? Tao ở phòng \nOk để cặp t qua,đang đi cv gần phòng mày, tiện xin cốc nước \nPhòng hết nước , đi ra mua nước và quay lại thấy cảnh này ,cay ko chứ lỵ, bạn thân t đó, 9x chưa vk , hàng khủng\n\n https://t.co/Q6WnYd3fQ4", + "id": "1801931843907850405", + "author_id": "1400702149277863937" + } + ], + "meta": { + "newest_id": "1801931918193111080", + "oldest_id": "1801931843907850405", + "result_count": 10, + "next_token": "b26v89c19zqg8o3frqlsnokm1wpbupx7u22fioknc9dod" + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_15-23-30.txt b/bin/Debug/net7.0/results_2024_6_15-23-30.txt new file mode 100644 index 0000000..67090e1 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_15-23-30.txt @@ -0,0 +1,90 @@ +{ + "data": [ + { + "text": "RT @NU_TRPG123: CoC「subject:1048」\nKP:衝動性\n\nPC/PL:\n宍道 孝雄/小野 ヤスユキ\n乱田 日々也/ぬ。\n\nテスプで通過しました~!めっちゃ楽しいシナリオだった!描写、うま~~~!!おじさんの生に感謝 https://t.co/6ruEK…", + "author_id": "1275632096128593920", + "id": "1802000648000729422", + "edit_history_tweet_ids": [ + "1802000648000729422" + ] + }, + { + "text": "RT @IruCa_Miso333: COC『肉にスパイス、バスタブに人魚 』\n𓇼𓈒𓐍⎯⎯⎯⎯⎯⎯⎯⎯ 𓌉𓇋 \n\nPC/PL\n□KPC\n味噌野 蟹妖/みそ\nミソノ コウヨウ\n\n■PC\n梟 鴇和/とり\nネコドリ トキワ\n\n𓌉𓇋 ⎯⎯⎯⎯⎯⎯⎯⎯𓇼𓈒𓐍…", + "author_id": "1503593796331737088", + "id": "1802000626559447446", + "edit_history_tweet_ids": [ + "1802000626559447446" + ] + }, + { + "text": "RT @saito_muki: CoC【ステガノグラフィ】\n\nKP 十十蜜柑様\n\nPC|PL\n\nHO1 保健室の先生\n一ノ瀬 優|『優一』様\n\nHO2 化学の先生\n葛宮 ひなせ|rot\n\n死体溶かしてきました〜〜🫶\n十十蜜柑さんと初同卓がこれ大丈夫ですか???\n\n「ふふ、楽しみ…", + "author_id": "990220559882403844", + "id": "1802000621438169349", + "edit_history_tweet_ids": [ + "1802000621438169349" + ] + }, + { + "text": "RT @hamu_sake: #PL募集\n\n【CoCシナリオ GODARCA】\n\nセッション形式:半テキ\nハンドアウト:PLが揃い次第調整・配布\n募集人数:10名\n日程:\n11/24(日)\n12/1(日)\n12/8(日)\n12/15(日)\n12/22(日)\n全日程 14:00〜…", + "author_id": "364062281", + "id": "1802000614538477928", + "edit_history_tweet_ids": [ + "1802000614538477928" + ] + }, + { + "text": "RT @shuuji_and_mm: coc6版「彼方からの君に捧ぐ」\nKP:やまと。さん\nSKP:魔女さん\nPL:カニうどんさん、しまさん、平子さん、正子\n面白かったです!!!!!\nとにかくどこを切り取っても綺麗な印象のシナリオで、アツい展開も良かったです👏\nファミリーになっ…", + "author_id": "1326902156633509889", + "id": "1802000614026772689", + "edit_history_tweet_ids": [ + "1802000614026772689" + ] + }, + { + "text": "RT @matetyakudasai: CoC 烏が群れては、極彩色\nHO4【先頭に従順な烏】/姫野 淡雪(ひめの あわゆき)\n「あなた様のことをずっと見てきたんですもの、この程度お茶の子さいさいですよ♡」\n#MateteamMate https://t.co/fiFsWlYO…", + "author_id": "1426065480201105412", + "id": "1802000603645972591", + "edit_history_tweet_ids": [ + "1802000603645972591" + ] + }, + { + "text": "CoC「subject:1048」\nKP:衝動性\n\nPC/PL:\n宍道 孝雄/小野 ヤスユキ\n乱田 日々也/ぬ。\n\nテスプで通過しました~!めっちゃ楽しいシナリオだった!描写、うま~~~!!おじさんの生に感謝 https://t.co/6ruEKd3Fnl", + "author_id": "1430735893304778753", + "id": "1802000591327240503", + "edit_history_tweet_ids": [ + "1802000591327240503" + ] + }, + { + "text": "CoC「監獄館殺人事件」1日目セーブです!PLさんたちの反応や予想をニヤニヤしながら眺めているKPは私だ。本格的に探索だ!というところでセーブになりましたが、次回を楽しみにして頂ければ🤭次回まで少し間が開いてしまいますが、次回もどうぞよろしくお願いします~!", + "author_id": "732202615883194368", + "id": "1802000583643238435", + "edit_history_tweet_ids": [ + "1802000583643238435" + ] + }, + { + "text": "RT @eri__TRPG: CoC7版【プルガトリウムの夜】\nKP:私\nHO1:立花 式(アムルさん)\nHO2:鹿島 彩(らむさん)\nエンディングAにて終了です。\n\n私自身のトラブルもありましたが全日2日間走りました!\n…え?全日2日…??\nそれくらい時間を気にせず長時間楽し…", + "author_id": "1702570101214711808", + "id": "1802000577246953615", + "edit_history_tweet_ids": [ + "1802000577246953615" + ] + }, + { + "text": "RT @TRPG1SORO: 현생으로 인해 쌓인 메일들을 아예 읽지도 못한 게 죄송스럽기도 하고......ㅠㅠ 미우 후속작 라스트 마일 소식을 듣게 되어서, 과거 영구 비공개 결정을 내린 CoC 시나리오 <일렉트릭 보더라인>을 30일까지 재공개합니다.…", + "author_id": "1459550476819927040", + "id": "1802000549774291344", + "edit_history_tweet_ids": [ + "1802000549774291344" + ] + } + ], + "meta": { + "newest_id": "1802000648000729422", + "oldest_id": "1802000549774291344", + "result_count": 10, + "next_token": "b26v89c19zqg8o3frqlt2az485o0vbeyq2fl9954pmz5p" + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_15-23-32.txt b/bin/Debug/net7.0/results_2024_6_15-23-32.txt new file mode 100644 index 0000000..a6142d0 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_15-23-32.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_15-23-33.txt b/bin/Debug/net7.0/results_2024_6_15-23-33.txt new file mode 100644 index 0000000..c077265 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_15-23-33.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_15-23-36.txt b/bin/Debug/net7.0/results_2024_6_15-23-36.txt new file mode 100644 index 0000000..0952bad --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_15-23-36.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-12-20.txt b/bin/Debug/net7.0/results_2024_6_16-12-20.txt new file mode 100644 index 0000000..825b6f3 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-12-20.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-11.txt b/bin/Debug/net7.0/results_2024_6_16-13-11.txt new file mode 100644 index 0000000..0952bad --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-11.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-12.txt b/bin/Debug/net7.0/results_2024_6_16-13-12.txt new file mode 100644 index 0000000..a6142d0 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-12.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-13.txt b/bin/Debug/net7.0/results_2024_6_16-13-13.txt new file mode 100644 index 0000000..dab9bdf --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-13.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624", + "id": "1802001164332077212" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-14.txt b/bin/Debug/net7.0/results_2024_6_16-13-14.txt new file mode 100644 index 0000000..0952bad --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-14.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-15.txt b/bin/Debug/net7.0/results_2024_6_16-13-15.txt new file mode 100644 index 0000000..c077265 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-15.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-16.txt b/bin/Debug/net7.0/results_2024_6_16-13-16.txt new file mode 100644 index 0000000..088f924 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-16.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-17.txt b/bin/Debug/net7.0/results_2024_6_16-13-17.txt new file mode 100644 index 0000000..b72379f --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-17.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-18.txt b/bin/Debug/net7.0/results_2024_6_16-13-18.txt new file mode 100644 index 0000000..765ffce --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-18.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-19.txt b/bin/Debug/net7.0/results_2024_6_16-13-19.txt new file mode 100644 index 0000000..088f924 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-19.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-20.txt b/bin/Debug/net7.0/results_2024_6_16-13-20.txt new file mode 100644 index 0000000..a6142d0 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-20.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-21.txt b/bin/Debug/net7.0/results_2024_6_16-13-21.txt new file mode 100644 index 0000000..28cdefc --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-21.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-22.txt b/bin/Debug/net7.0/results_2024_6_16-13-22.txt new file mode 100644 index 0000000..4446139 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-22.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-26.txt b/bin/Debug/net7.0/results_2024_6_16-13-26.txt new file mode 100644 index 0000000..088f924 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-26.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-27.txt b/bin/Debug/net7.0/results_2024_6_16-13-27.txt new file mode 100644 index 0000000..825b6f3 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-27.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-28.txt b/bin/Debug/net7.0/results_2024_6_16-13-28.txt new file mode 100644 index 0000000..088f924 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-28.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-29.txt b/bin/Debug/net7.0/results_2024_6_16-13-29.txt new file mode 100644 index 0000000..765ffce --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-29.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-30.txt b/bin/Debug/net7.0/results_2024_6_16-13-30.txt new file mode 100644 index 0000000..825b6f3 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-30.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-31.txt b/bin/Debug/net7.0/results_2024_6_16-13-31.txt new file mode 100644 index 0000000..4446139 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-31.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-32.txt b/bin/Debug/net7.0/results_2024_6_16-13-32.txt new file mode 100644 index 0000000..a6142d0 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-32.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-33.txt b/bin/Debug/net7.0/results_2024_6_16-13-33.txt new file mode 100644 index 0000000..8303d2b --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-33.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-34.txt b/bin/Debug/net7.0/results_2024_6_16-13-34.txt new file mode 100644 index 0000000..b72379f --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-34.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-35.txt b/bin/Debug/net7.0/results_2024_6_16-13-35.txt new file mode 100644 index 0000000..a6142d0 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-35.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-36.txt b/bin/Debug/net7.0/results_2024_6_16-13-36.txt new file mode 100644 index 0000000..0952bad --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-36.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-37.txt b/bin/Debug/net7.0/results_2024_6_16-13-37.txt new file mode 100644 index 0000000..a25d9e6 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-37.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "id": "1802001164332077212" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-41.txt b/bin/Debug/net7.0/results_2024_6_16-13-41.txt new file mode 100644 index 0000000..54c00d4 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-41.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-42.txt b/bin/Debug/net7.0/results_2024_6_16-13-42.txt new file mode 100644 index 0000000..3ac223c --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-42.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-43.txt b/bin/Debug/net7.0/results_2024_6_16-13-43.txt new file mode 100644 index 0000000..6f8eeca --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-43.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "id": "1802001164332077212", + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-44.txt b/bin/Debug/net7.0/results_2024_6_16-13-44.txt new file mode 100644 index 0000000..b72379f --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-44.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-45.txt b/bin/Debug/net7.0/results_2024_6_16-13-45.txt new file mode 100644 index 0000000..765ffce --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-45.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-46.txt b/bin/Debug/net7.0/results_2024_6_16-13-46.txt new file mode 100644 index 0000000..6f8eeca --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-46.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "id": "1802001164332077212", + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-47.txt b/bin/Debug/net7.0/results_2024_6_16-13-47.txt new file mode 100644 index 0000000..765ffce --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-47.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-48.txt b/bin/Debug/net7.0/results_2024_6_16-13-48.txt new file mode 100644 index 0000000..a6142d0 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-48.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-49.txt b/bin/Debug/net7.0/results_2024_6_16-13-49.txt new file mode 100644 index 0000000..765ffce --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-49.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-13-50.txt b/bin/Debug/net7.0/results_2024_6_16-13-50.txt new file mode 100644 index 0000000..28cdefc --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-13-50.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-14-46.txt b/bin/Debug/net7.0/results_2024_6_16-14-46.txt new file mode 100644 index 0000000..d2e8879 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-14-46.txt @@ -0,0 +1,18 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "created_at": "2024-06-15T15:32:11Z", + "id": "1802001164332077212" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-14-50.txt b/bin/Debug/net7.0/results_2024_6_16-14-50.txt new file mode 100644 index 0000000..8cede85 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-14-50.txt @@ -0,0 +1,18 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "created_at": "2024-06-15T15:32:11Z", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-14-54.txt b/bin/Debug/net7.0/results_2024_6_16-14-54.txt new file mode 100644 index 0000000..e4f231f --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-14-54.txt @@ -0,0 +1,18 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "created_at": "2024-06-15T15:32:11Z", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-17-38.txt b/bin/Debug/net7.0/results_2024_6_16-17-38.txt new file mode 100644 index 0000000..bf1a740 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-17-38.txt @@ -0,0 +1,18 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "created_at": "2024-06-15T15:32:11Z" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-17-39.txt b/bin/Debug/net7.0/results_2024_6_16-17-39.txt new file mode 100644 index 0000000..80e4d2c --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-17-39.txt @@ -0,0 +1,18 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "created_at": "2024-06-15T15:32:11Z", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-17-59.txt b/bin/Debug/net7.0/results_2024_6_16-17-59.txt new file mode 100644 index 0000000..5002b7d --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-17-59.txt @@ -0,0 +1,72 @@ +{ + "data": [ + { + "text": "#DOGE is so bullish rn, We will probably land on the uranus.\n\n#CallingIt", + "created_at": "2024-06-16T09:58:46Z", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802279644793885037" + ], + "id": "1802279644793885037" + }, + { + "text": "Yan hits a HR today #CallingIt", + "created_at": "2024-06-15T18:57:38Z", + "author_id": "473500129", + "edit_history_tweet_ids": [ + "1802052866669965477" + ], + "id": "1802052866669965477" + }, + { + "text": "RT @EtSicutMe: @VigilantFox They really need 2 STOP callingit \"long COVID\", it's dysautonomia. They just DON'T WANT ppl 2 PUT 2GETHER that…", + "created_at": "2024-06-15T14:59:21Z", + "author_id": "1587106579455029253", + "edit_history_tweet_ids": [ + "1801992900588589382" + ], + "id": "1801992900588589382" + }, + { + "text": "@VigilantFox They really need 2 STOP callingit \"long COVID\", it's dysautonomia. They just DON'T WANT ppl 2 PUT 2GETHER that the UPTICK in that Dx (dysautonomia; POTS, NCS, etc) in YOUNG ppl in the last 30-40Y is from the CDC schedule jabs. It's NOT just CoV-2 jabs that cause dysautonomia.", + "created_at": "2024-06-15T01:56:09Z", + "author_id": "1671598949965221890", + "edit_history_tweet_ids": [ + "1801795802073030775" + ], + "id": "1801795802073030775" + }, + { + "text": "im callingit now jrue holiday will end with lees than 10 points !!! #BOSvsDAL", + "created_at": "2024-06-15T01:09:08Z", + "author_id": "1702147062630952960", + "edit_history_tweet_ids": [ + "1801783971367555495" + ], + "id": "1801783971367555495" + }, + { + "text": "@minniepic_ it’s orange #callingit", + "created_at": "2024-06-12T05:49:32Z", + "author_id": "1679051132637675520", + "edit_history_tweet_ids": [ + "1800767372044722564" + ], + "id": "1800767372044722564" + }, + { + "text": "@miss87parker Yall act like the girl isnt getting cooked right now by WOMEN at that. Meanwhile its yall own gender callingit an 'aggressive advance' and saying they woulda liked it. 😭😭", + "created_at": "2024-06-11T11:15:32Z", + "author_id": "1741254677566504960", + "edit_history_tweet_ids": [ + "1800487025059283079" + ], + "id": "1800487025059283079" + } + ], + "meta": { + "newest_id": "1802279644793885037", + "oldest_id": "1800487025059283079", + "result_count": 7 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-18-46.txt b/bin/Debug/net7.0/results_2024_6_16-18-46.txt new file mode 100644 index 0000000..d4c008a --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-18-46.txt @@ -0,0 +1,18 @@ +{ + "data": [ + { + "id": "1802001164332077212", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "created_at": "2024-06-15T15:32:11Z", + "author_id": "1800569569679130624", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-18-49.txt b/bin/Debug/net7.0/results_2024_6_16-18-49.txt new file mode 100644 index 0000000..b10e6d9 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-18-49.txt @@ -0,0 +1,27 @@ +{ + "data": [ + { + "id": "1802292380655288746", + "edit_history_tweet_ids": [ + "1802292380655288746" + ], + "author_id": "1366296028794605573", + "created_at": "2024-06-16T10:49:23Z", + "text": "Testing something.. \n\n$sinu \n\n#callfi #thisisatest" + }, + { + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624", + "created_at": "2024-06-15T15:32:11Z", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi" + } + ], + "meta": { + "newest_id": "1802292380655288746", + "oldest_id": "1802001164332077212", + "result_count": 2 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-19-55.txt b/bin/Debug/net7.0/results_2024_6_16-19-55.txt new file mode 100644 index 0000000..77da718 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-19-55.txt @@ -0,0 +1,36 @@ +{ + "data": [ + { + "text": "$Mother is Going to the moon!\n\n#CallFi #CallingIt", + "id": "1802308426862653808", + "edit_history_tweet_ids": [ + "1802308426862653808" + ], + "author_id": "1800569569679130624", + "created_at": "2024-06-16T11:53:08Z" + }, + { + "text": "Testing something.. \n\n$sinu \n\n#callfi #thisisatest", + "id": "1802292380655288746", + "edit_history_tweet_ids": [ + "1802292380655288746" + ], + "author_id": "1366296028794605573", + "created_at": "2024-06-16T10:49:23Z" + }, + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "author_id": "1800569569679130624", + "created_at": "2024-06-15T15:32:11Z" + } + ], + "meta": { + "newest_id": "1802308426862653808", + "oldest_id": "1802001164332077212", + "result_count": 3 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-19-9.txt b/bin/Debug/net7.0/results_2024_6_16-19-9.txt new file mode 100644 index 0000000..db775ac --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-19-9.txt @@ -0,0 +1,27 @@ +{ + "data": [ + { + "author_id": "1366296028794605573", + "created_at": "2024-06-16T10:49:23Z", + "id": "1802292380655288746", + "edit_history_tweet_ids": [ + "1802292380655288746" + ], + "text": "Testing something.. \n\n$sinu \n\n#callfi #thisisatest" + }, + { + "author_id": "1800569569679130624", + "created_at": "2024-06-15T15:32:11Z", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi" + } + ], + "meta": { + "newest_id": "1802292380655288746", + "oldest_id": "1802001164332077212", + "result_count": 2 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-2-21.txt b/bin/Debug/net7.0/results_2024_6_16-2-21.txt new file mode 100644 index 0000000..6f8eeca --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-2-21.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "id": "1802001164332077212", + "author_id": "1800569569679130624" + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-2-42.txt b/bin/Debug/net7.0/results_2024_6_16-2-42.txt new file mode 100644 index 0000000..3ac223c --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-2-42.txt @@ -0,0 +1,17 @@ +{ + "data": [ + { + "author_id": "1800569569679130624", + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "id": "1802001164332077212", + "edit_history_tweet_ids": [ + "1802001164332077212" + ] + } + ], + "meta": { + "newest_id": "1802001164332077212", + "oldest_id": "1802001164332077212", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-0.txt b/bin/Debug/net7.0/results_2024_6_16-20-0.txt new file mode 100644 index 0000000..f518b0a --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-0.txt @@ -0,0 +1,36 @@ +{ + "data": [ + { + "text": "$Mother is Going to the moon!\n\n#CallFi #CallingIt", + "author_id": "1800569569679130624", + "created_at": "2024-06-16T11:53:08Z", + "edit_history_tweet_ids": [ + "1802308426862653808" + ], + "id": "1802308426862653808" + }, + { + "text": "Testing something.. \n\n$sinu \n\n#callfi #thisisatest", + "author_id": "1366296028794605573", + "created_at": "2024-06-16T10:49:23Z", + "edit_history_tweet_ids": [ + "1802292380655288746" + ], + "id": "1802292380655288746" + }, + { + "text": "$COC #CocktailbarCOC Will go to the moon pretty soon!\n\n#CallFi $CallFi", + "author_id": "1800569569679130624", + "created_at": "2024-06-15T15:32:11Z", + "edit_history_tweet_ids": [ + "1802001164332077212" + ], + "id": "1802001164332077212" + } + ], + "meta": { + "newest_id": "1802308426862653808", + "oldest_id": "1802001164332077212", + "result_count": 3 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-11.txt b/bin/Debug/net7.0/results_2024_6_16-20-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-12.txt b/bin/Debug/net7.0/results_2024_6_16-20-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-13.txt b/bin/Debug/net7.0/results_2024_6_16-20-13.txt new file mode 100644 index 0000000..efbd97c --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-13.txt @@ -0,0 +1,18 @@ +{ + "data": [ + { + "edit_history_tweet_ids": [ + "1802313465727680738" + ], + "text": "$Father is on a bull run! Im #CallingIt\n\n#CallFi", + "author_id": "1800569569679130624", + "created_at": "2024-06-16T12:13:10Z", + "id": "1802313465727680738" + } + ], + "meta": { + "newest_id": "1802313465727680738", + "oldest_id": "1802313465727680738", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-14.txt b/bin/Debug/net7.0/results_2024_6_16-20-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-15.txt b/bin/Debug/net7.0/results_2024_6_16-20-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-16.txt b/bin/Debug/net7.0/results_2024_6_16-20-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-17.txt b/bin/Debug/net7.0/results_2024_6_16-20-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-18.txt b/bin/Debug/net7.0/results_2024_6_16-20-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-19.txt b/bin/Debug/net7.0/results_2024_6_16-20-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-20.txt b/bin/Debug/net7.0/results_2024_6_16-20-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-21.txt b/bin/Debug/net7.0/results_2024_6_16-20-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-22.txt b/bin/Debug/net7.0/results_2024_6_16-20-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-23.txt b/bin/Debug/net7.0/results_2024_6_16-20-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-24.txt b/bin/Debug/net7.0/results_2024_6_16-20-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-25.txt b/bin/Debug/net7.0/results_2024_6_16-20-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-26.txt b/bin/Debug/net7.0/results_2024_6_16-20-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-27.txt b/bin/Debug/net7.0/results_2024_6_16-20-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-28.txt b/bin/Debug/net7.0/results_2024_6_16-20-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-29.txt b/bin/Debug/net7.0/results_2024_6_16-20-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-30.txt b/bin/Debug/net7.0/results_2024_6_16-20-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-31.txt b/bin/Debug/net7.0/results_2024_6_16-20-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-32.txt b/bin/Debug/net7.0/results_2024_6_16-20-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-33.txt b/bin/Debug/net7.0/results_2024_6_16-20-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-34.txt b/bin/Debug/net7.0/results_2024_6_16-20-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-35.txt b/bin/Debug/net7.0/results_2024_6_16-20-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-36.txt b/bin/Debug/net7.0/results_2024_6_16-20-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-37.txt b/bin/Debug/net7.0/results_2024_6_16-20-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-38.txt b/bin/Debug/net7.0/results_2024_6_16-20-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-39.txt b/bin/Debug/net7.0/results_2024_6_16-20-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-40.txt b/bin/Debug/net7.0/results_2024_6_16-20-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-41.txt b/bin/Debug/net7.0/results_2024_6_16-20-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-42.txt b/bin/Debug/net7.0/results_2024_6_16-20-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-43.txt b/bin/Debug/net7.0/results_2024_6_16-20-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-44.txt b/bin/Debug/net7.0/results_2024_6_16-20-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-45.txt b/bin/Debug/net7.0/results_2024_6_16-20-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-46.txt b/bin/Debug/net7.0/results_2024_6_16-20-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-47.txt b/bin/Debug/net7.0/results_2024_6_16-20-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-48.txt b/bin/Debug/net7.0/results_2024_6_16-20-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-49.txt b/bin/Debug/net7.0/results_2024_6_16-20-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-50.txt b/bin/Debug/net7.0/results_2024_6_16-20-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-51.txt b/bin/Debug/net7.0/results_2024_6_16-20-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-52.txt b/bin/Debug/net7.0/results_2024_6_16-20-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-53.txt b/bin/Debug/net7.0/results_2024_6_16-20-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-54.txt b/bin/Debug/net7.0/results_2024_6_16-20-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-55.txt b/bin/Debug/net7.0/results_2024_6_16-20-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-56.txt b/bin/Debug/net7.0/results_2024_6_16-20-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-57.txt b/bin/Debug/net7.0/results_2024_6_16-20-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-58.txt b/bin/Debug/net7.0/results_2024_6_16-20-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-20-59.txt b/bin/Debug/net7.0/results_2024_6_16-20-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-20-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-0.txt b/bin/Debug/net7.0/results_2024_6_16-21-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-1.txt b/bin/Debug/net7.0/results_2024_6_16-21-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-10.txt b/bin/Debug/net7.0/results_2024_6_16-21-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-13.txt b/bin/Debug/net7.0/results_2024_6_16-21-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-16.txt b/bin/Debug/net7.0/results_2024_6_16-21-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-17.txt b/bin/Debug/net7.0/results_2024_6_16-21-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-18.txt b/bin/Debug/net7.0/results_2024_6_16-21-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-19.txt b/bin/Debug/net7.0/results_2024_6_16-21-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-2.txt b/bin/Debug/net7.0/results_2024_6_16-21-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-20.txt b/bin/Debug/net7.0/results_2024_6_16-21-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-21.txt b/bin/Debug/net7.0/results_2024_6_16-21-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-22.txt b/bin/Debug/net7.0/results_2024_6_16-21-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-23.txt b/bin/Debug/net7.0/results_2024_6_16-21-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-24.txt b/bin/Debug/net7.0/results_2024_6_16-21-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-25.txt b/bin/Debug/net7.0/results_2024_6_16-21-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-26.txt b/bin/Debug/net7.0/results_2024_6_16-21-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-27.txt b/bin/Debug/net7.0/results_2024_6_16-21-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-28.txt b/bin/Debug/net7.0/results_2024_6_16-21-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-29.txt b/bin/Debug/net7.0/results_2024_6_16-21-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-3.txt b/bin/Debug/net7.0/results_2024_6_16-21-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-30.txt b/bin/Debug/net7.0/results_2024_6_16-21-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-31.txt b/bin/Debug/net7.0/results_2024_6_16-21-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-32.txt b/bin/Debug/net7.0/results_2024_6_16-21-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-33.txt b/bin/Debug/net7.0/results_2024_6_16-21-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-34.txt b/bin/Debug/net7.0/results_2024_6_16-21-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-35.txt b/bin/Debug/net7.0/results_2024_6_16-21-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-36.txt b/bin/Debug/net7.0/results_2024_6_16-21-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-37.txt b/bin/Debug/net7.0/results_2024_6_16-21-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-38.txt b/bin/Debug/net7.0/results_2024_6_16-21-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-39.txt b/bin/Debug/net7.0/results_2024_6_16-21-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-4.txt b/bin/Debug/net7.0/results_2024_6_16-21-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-40.txt b/bin/Debug/net7.0/results_2024_6_16-21-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-41.txt b/bin/Debug/net7.0/results_2024_6_16-21-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-42.txt b/bin/Debug/net7.0/results_2024_6_16-21-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-43.txt b/bin/Debug/net7.0/results_2024_6_16-21-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-44.txt b/bin/Debug/net7.0/results_2024_6_16-21-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-46.txt b/bin/Debug/net7.0/results_2024_6_16-21-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-47.txt b/bin/Debug/net7.0/results_2024_6_16-21-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-48.txt b/bin/Debug/net7.0/results_2024_6_16-21-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-49.txt b/bin/Debug/net7.0/results_2024_6_16-21-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-50.txt b/bin/Debug/net7.0/results_2024_6_16-21-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-51.txt b/bin/Debug/net7.0/results_2024_6_16-21-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-52.txt b/bin/Debug/net7.0/results_2024_6_16-21-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-53.txt b/bin/Debug/net7.0/results_2024_6_16-21-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-54.txt b/bin/Debug/net7.0/results_2024_6_16-21-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-55.txt b/bin/Debug/net7.0/results_2024_6_16-21-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-56.txt b/bin/Debug/net7.0/results_2024_6_16-21-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-57.txt b/bin/Debug/net7.0/results_2024_6_16-21-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-58.txt b/bin/Debug/net7.0/results_2024_6_16-21-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-59.txt b/bin/Debug/net7.0/results_2024_6_16-21-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-7.txt b/bin/Debug/net7.0/results_2024_6_16-21-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-21-8.txt b/bin/Debug/net7.0/results_2024_6_16-21-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-21-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-0.txt b/bin/Debug/net7.0/results_2024_6_16-22-0.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-0.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-1.txt b/bin/Debug/net7.0/results_2024_6_16-22-1.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-1.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-10.txt b/bin/Debug/net7.0/results_2024_6_16-22-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-11.txt b/bin/Debug/net7.0/results_2024_6_16-22-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-12.txt b/bin/Debug/net7.0/results_2024_6_16-22-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-13.txt b/bin/Debug/net7.0/results_2024_6_16-22-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-14.txt b/bin/Debug/net7.0/results_2024_6_16-22-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-15.txt b/bin/Debug/net7.0/results_2024_6_16-22-15.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-15.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-16.txt b/bin/Debug/net7.0/results_2024_6_16-22-16.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-16.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-17.txt b/bin/Debug/net7.0/results_2024_6_16-22-17.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-17.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-18.txt b/bin/Debug/net7.0/results_2024_6_16-22-18.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-18.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-19.txt b/bin/Debug/net7.0/results_2024_6_16-22-19.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-19.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-2.txt b/bin/Debug/net7.0/results_2024_6_16-22-2.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-2.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-20.txt b/bin/Debug/net7.0/results_2024_6_16-22-20.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-20.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-21.txt b/bin/Debug/net7.0/results_2024_6_16-22-21.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-21.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-22.txt b/bin/Debug/net7.0/results_2024_6_16-22-22.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-22.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-23.txt b/bin/Debug/net7.0/results_2024_6_16-22-23.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-23.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-24.txt b/bin/Debug/net7.0/results_2024_6_16-22-24.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-24.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-25.txt b/bin/Debug/net7.0/results_2024_6_16-22-25.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-25.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-26.txt b/bin/Debug/net7.0/results_2024_6_16-22-26.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-26.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-27.txt b/bin/Debug/net7.0/results_2024_6_16-22-27.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-27.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-28.txt b/bin/Debug/net7.0/results_2024_6_16-22-28.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-28.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-29.txt b/bin/Debug/net7.0/results_2024_6_16-22-29.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-29.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-3.txt b/bin/Debug/net7.0/results_2024_6_16-22-3.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-3.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-30.txt b/bin/Debug/net7.0/results_2024_6_16-22-30.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-30.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-31.txt b/bin/Debug/net7.0/results_2024_6_16-22-31.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-31.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-32.txt b/bin/Debug/net7.0/results_2024_6_16-22-32.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-32.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-33.txt b/bin/Debug/net7.0/results_2024_6_16-22-33.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-33.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-34.txt b/bin/Debug/net7.0/results_2024_6_16-22-34.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-34.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-35.txt b/bin/Debug/net7.0/results_2024_6_16-22-35.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-35.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-36.txt b/bin/Debug/net7.0/results_2024_6_16-22-36.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-36.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-37.txt b/bin/Debug/net7.0/results_2024_6_16-22-37.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-37.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-38.txt b/bin/Debug/net7.0/results_2024_6_16-22-38.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-38.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-39.txt b/bin/Debug/net7.0/results_2024_6_16-22-39.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-39.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-4.txt b/bin/Debug/net7.0/results_2024_6_16-22-4.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-4.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-40.txt b/bin/Debug/net7.0/results_2024_6_16-22-40.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-40.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-41.txt b/bin/Debug/net7.0/results_2024_6_16-22-41.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-41.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-42.txt b/bin/Debug/net7.0/results_2024_6_16-22-42.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-42.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-43.txt b/bin/Debug/net7.0/results_2024_6_16-22-43.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-43.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-44.txt b/bin/Debug/net7.0/results_2024_6_16-22-44.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-44.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-45.txt b/bin/Debug/net7.0/results_2024_6_16-22-45.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-45.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-46.txt b/bin/Debug/net7.0/results_2024_6_16-22-46.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-46.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-47.txt b/bin/Debug/net7.0/results_2024_6_16-22-47.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-47.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-48.txt b/bin/Debug/net7.0/results_2024_6_16-22-48.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-48.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-49.txt b/bin/Debug/net7.0/results_2024_6_16-22-49.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-49.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-5.txt b/bin/Debug/net7.0/results_2024_6_16-22-5.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-5.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-50.txt b/bin/Debug/net7.0/results_2024_6_16-22-50.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-50.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-51.txt b/bin/Debug/net7.0/results_2024_6_16-22-51.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-51.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-52.txt b/bin/Debug/net7.0/results_2024_6_16-22-52.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-52.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-53.txt b/bin/Debug/net7.0/results_2024_6_16-22-53.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-53.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-54.txt b/bin/Debug/net7.0/results_2024_6_16-22-54.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-54.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-55.txt b/bin/Debug/net7.0/results_2024_6_16-22-55.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-55.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-56.txt b/bin/Debug/net7.0/results_2024_6_16-22-56.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-56.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-57.txt b/bin/Debug/net7.0/results_2024_6_16-22-57.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-57.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-6.txt b/bin/Debug/net7.0/results_2024_6_16-22-6.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-6.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-7.txt b/bin/Debug/net7.0/results_2024_6_16-22-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-8.txt b/bin/Debug/net7.0/results_2024_6_16-22-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_16-22-9.txt b/bin/Debug/net7.0/results_2024_6_16-22-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_16-22-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_17-0-10.txt b/bin/Debug/net7.0/results_2024_6_17-0-10.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_17-0-10.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_17-0-11.txt b/bin/Debug/net7.0/results_2024_6_17-0-11.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_17-0-11.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_17-0-12.txt b/bin/Debug/net7.0/results_2024_6_17-0-12.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_17-0-12.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_17-0-13.txt b/bin/Debug/net7.0/results_2024_6_17-0-13.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_17-0-13.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_17-0-14.txt b/bin/Debug/net7.0/results_2024_6_17-0-14.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_17-0-14.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_17-0-36.txt b/bin/Debug/net7.0/results_2024_6_17-0-36.txt new file mode 100644 index 0000000..9ea2d6c --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_17-0-36.txt @@ -0,0 +1,18 @@ +{ + "data": [ + { + "created_at": "2024-06-16T16:33:37Z", + "text": "Testing something.. $DTJR #callfi #thisisatest", + "edit_history_tweet_ids": [ + "1802379009382359511" + ], + "id": "1802379009382359511", + "author_id": "1366296028794605573" + } + ], + "meta": { + "newest_id": "1802379009382359511", + "oldest_id": "1802379009382359511", + "result_count": 1 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_17-0-7.txt b/bin/Debug/net7.0/results_2024_6_17-0-7.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_17-0-7.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_17-0-8.txt b/bin/Debug/net7.0/results_2024_6_17-0-8.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_17-0-8.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net7.0/results_2024_6_17-0-9.txt b/bin/Debug/net7.0/results_2024_6_17-0-9.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net7.0/results_2024_6_17-0-9.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/Newtonsoft.Json.dll b/bin/Debug/net8.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/bin/Debug/net8.0/Newtonsoft.Json.dll differ diff --git a/bin/Debug/net8.0/callfi b/bin/Debug/net8.0/callfi new file mode 100755 index 0000000..bacb62c Binary files /dev/null and b/bin/Debug/net8.0/callfi differ diff --git a/bin/Debug/net8.0/callfi.deps.json b/bin/Debug/net8.0/callfi.deps.json new file mode 100644 index 0000000..45d5095 --- /dev/null +++ b/bin/Debug/net8.0/callfi.deps.json @@ -0,0 +1,777 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "callfi/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4" + }, + "runtime": { + "callfi.dll": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.1": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + } + } + }, + "libraries": { + "callfi/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==", + "path": "microsoft.netcore.platforms/1.1.1", + "hashPath": "microsoft.netcore.platforms.1.1.1.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/callfi.dll b/bin/Debug/net8.0/callfi.dll new file mode 100644 index 0000000..145a4c3 Binary files /dev/null and b/bin/Debug/net8.0/callfi.dll differ diff --git a/bin/Debug/net8.0/callfi.pdb b/bin/Debug/net8.0/callfi.pdb new file mode 100644 index 0000000..f44ade5 Binary files /dev/null and b/bin/Debug/net8.0/callfi.pdb differ diff --git a/bin/Debug/net8.0/callfi.runtimeconfig.json b/bin/Debug/net8.0/callfi.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/bin/Debug/net8.0/callfi.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/bin/Debug/net8.0/results_2024_6_20-20-58.txt b/bin/Debug/net8.0/results_2024_6_20-20-58.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net8.0/results_2024_6_20-20-58.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/results_2024_6_20-20-59.txt b/bin/Debug/net8.0/results_2024_6_20-20-59.txt new file mode 100644 index 0000000..58487d5 --- /dev/null +++ b/bin/Debug/net8.0/results_2024_6_20-20-59.txt @@ -0,0 +1,5 @@ +{ + "meta": { + "result_count": 0 + } +} \ No newline at end of file diff --git a/callfi.csproj b/callfi.csproj new file mode 100644 index 0000000..20c1e37 --- /dev/null +++ b/callfi.csproj @@ -0,0 +1,15 @@ + + + + Exe + net7.0 + enable + enable + + + + + + + + diff --git a/callfi_crawler.service b/callfi_crawler.service new file mode 100644 index 0000000..b6852fc --- /dev/null +++ b/callfi_crawler.service @@ -0,0 +1,13 @@ +[Unit] +Description=Foo Bar Service +[Service] +#WorkingDirectory=/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/ +ExecStart= /usr/bin/dotnet '/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/callfi.dll' +Restart=always +RestartSec=10 +SyslogIdentifier=dotnet-postservice +User=root +Environment=ASPNETCORE_ENVIRONMENT=Production + +[Install] +WantedBy=multi-user.target diff --git a/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..d69481d --- /dev/null +++ b/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Debug/net7.0/PublishOutputs.b2e3415fce.txt b/obj/Debug/net7.0/PublishOutputs.b2e3415fce.txt new file mode 100644 index 0000000..53ed082 --- /dev/null +++ b/obj/Debug/net7.0/PublishOutputs.b2e3415fce.txt @@ -0,0 +1,6 @@ +/root/c projcts/callfi/bin/Debug/net7.0/publish/callfi +/root/c projcts/callfi/bin/Debug/net7.0/publish/callfi.dll +/root/c projcts/callfi/bin/Debug/net7.0/publish/callfi.deps.json +/root/c projcts/callfi/bin/Debug/net7.0/publish/callfi.runtimeconfig.json +/root/c projcts/callfi/bin/Debug/net7.0/publish/callfi.pdb +/root/c projcts/callfi/bin/Debug/net7.0/publish/Newtonsoft.Json.dll diff --git a/obj/Debug/net7.0/apphost b/obj/Debug/net7.0/apphost new file mode 100755 index 0000000..830ad65 Binary files /dev/null and b/obj/Debug/net7.0/apphost differ diff --git a/obj/Debug/net7.0/callfi.AssemblyInfo.cs b/obj/Debug/net7.0/callfi.AssemblyInfo.cs new file mode 100644 index 0000000..71f972c --- /dev/null +++ b/obj/Debug/net7.0/callfi.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("callfi")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("callfi")] +[assembly: System.Reflection.AssemblyTitleAttribute("callfi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net7.0/callfi.AssemblyInfoInputs.cache b/obj/Debug/net7.0/callfi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ff8fb1e --- /dev/null +++ b/obj/Debug/net7.0/callfi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d841a96d0413da057734129fd2ad7aef5fbe0070271ce73640b15db2bc93247e diff --git a/obj/Debug/net7.0/callfi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/callfi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..65da108 --- /dev/null +++ b/obj/Debug/net7.0/callfi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net7.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 = callfi +build_property.ProjectDir = /root/c projcts/callfi/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/obj/Debug/net7.0/callfi.GlobalUsings.g.cs b/obj/Debug/net7.0/callfi.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net7.0/callfi.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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/obj/Debug/net7.0/callfi.assets.cache b/obj/Debug/net7.0/callfi.assets.cache new file mode 100644 index 0000000..7a727ed Binary files /dev/null and b/obj/Debug/net7.0/callfi.assets.cache differ diff --git a/obj/Debug/net7.0/callfi.csproj.AssemblyReference.cache b/obj/Debug/net7.0/callfi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d3c6bd3 Binary files /dev/null and b/obj/Debug/net7.0/callfi.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net7.0/callfi.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/callfi.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..fc2c2a3 --- /dev/null +++ b/obj/Debug/net7.0/callfi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c19e38bcd3d0a6d6fbca85375e7e611932958534e9f71619d1d08fe2022b056b diff --git a/obj/Debug/net7.0/callfi.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/callfi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ab58d34 --- /dev/null +++ b/obj/Debug/net7.0/callfi.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +/root/c projcts/callfi/bin/Debug/net7.0/callfi +/root/c projcts/callfi/bin/Debug/net7.0/callfi.deps.json +/root/c projcts/callfi/bin/Debug/net7.0/callfi.runtimeconfig.json +/root/c projcts/callfi/bin/Debug/net7.0/callfi.dll +/root/c projcts/callfi/bin/Debug/net7.0/callfi.pdb +/root/c projcts/callfi/obj/Debug/net7.0/callfi.csproj.AssemblyReference.cache +/root/c projcts/callfi/obj/Debug/net7.0/callfi.GeneratedMSBuildEditorConfig.editorconfig +/root/c projcts/callfi/obj/Debug/net7.0/callfi.AssemblyInfoInputs.cache +/root/c projcts/callfi/obj/Debug/net7.0/callfi.AssemblyInfo.cs +/root/c projcts/callfi/obj/Debug/net7.0/callfi.csproj.CoreCompileInputs.cache +/root/c projcts/callfi/obj/Debug/net7.0/callfi.dll +/root/c projcts/callfi/obj/Debug/net7.0/refint/callfi.dll +/root/c projcts/callfi/obj/Debug/net7.0/callfi.pdb +/root/c projcts/callfi/obj/Debug/net7.0/callfi.genruntimeconfig.cache +/root/c projcts/callfi/obj/Debug/net7.0/ref/callfi.dll +/root/c projcts/callfi/bin/Debug/net7.0/Newtonsoft.Json.dll +/root/c projcts/callfi/obj/Debug/net7.0/callfi.csproj.Up2Date diff --git a/obj/Debug/net7.0/callfi.dll b/obj/Debug/net7.0/callfi.dll new file mode 100644 index 0000000..fe9c6bf Binary files /dev/null and b/obj/Debug/net7.0/callfi.dll differ diff --git a/obj/Debug/net7.0/callfi.genruntimeconfig.cache b/obj/Debug/net7.0/callfi.genruntimeconfig.cache new file mode 100644 index 0000000..ef950f3 --- /dev/null +++ b/obj/Debug/net7.0/callfi.genruntimeconfig.cache @@ -0,0 +1 @@ +a3991168572ca4bc95e7196d8e84fd5a5147e469967d822542c1c7fe1fb56b10 diff --git a/obj/Debug/net7.0/callfi.pdb b/obj/Debug/net7.0/callfi.pdb new file mode 100644 index 0000000..4af423f Binary files /dev/null and b/obj/Debug/net7.0/callfi.pdb differ diff --git a/obj/Debug/net7.0/linux-x64/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Debug/net7.0/linux-x64/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..d69481d --- /dev/null +++ b/obj/Debug/net7.0/linux-x64/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Debug/net7.0/linux-x64/PublishOutputs.217bc9fa3c.txt b/obj/Debug/net7.0/linux-x64/PublishOutputs.217bc9fa3c.txt new file mode 100644 index 0000000..e7203d1 --- /dev/null +++ b/obj/Debug/net7.0/linux-x64/PublishOutputs.217bc9fa3c.txt @@ -0,0 +1,188 @@ +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/callfi +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/callfi.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/callfi.deps.json +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/callfi.runtimeconfig.json +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/callfi.pdb +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/Microsoft.CSharp.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/Microsoft.VisualBasic.Core.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/Microsoft.VisualBasic.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/Microsoft.Win32.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/Microsoft.Win32.Registry.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.AppContext.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Buffers.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Collections.Concurrent.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Collections.Immutable.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Collections.NonGeneric.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Collections.Specialized.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Collections.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.Annotations.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.DataAnnotations.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.EventBasedAsync.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.TypeConverter.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.ComponentModel.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Configuration.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Console.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Core.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Data.Common.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Data.DataSetExtensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Data.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Contracts.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Debug.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.DiagnosticSource.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.FileVersionInfo.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Process.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.StackTrace.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.TextWriterTraceListener.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Tools.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.TraceSource.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Diagnostics.Tracing.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Drawing.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Drawing.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Dynamic.Runtime.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Formats.Asn1.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Formats.Tar.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Globalization.Calendars.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Globalization.Extensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Globalization.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.Brotli.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.FileSystem.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.ZipFile.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.Compression.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.AccessControl.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.DriveInfo.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.Watcher.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.FileSystem.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.IsolatedStorage.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.MemoryMappedFiles.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.Pipes.AccessControl.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.Pipes.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.UnmanagedMemoryStream.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.IO.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Linq.Expressions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Linq.Parallel.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Linq.Queryable.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Linq.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Memory.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.Http.Json.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.Http.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.HttpListener.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.Mail.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.NameResolution.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.NetworkInformation.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.Ping.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.Quic.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.Requests.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.Security.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.ServicePoint.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.Sockets.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.WebClient.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.WebHeaderCollection.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.WebProxy.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.WebSockets.Client.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.WebSockets.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Net.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Numerics.Vectors.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Numerics.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.ObjectModel.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Private.CoreLib.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Private.DataContractSerialization.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Private.Uri.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Private.Xml.Linq.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Private.Xml.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Reflection.DispatchProxy.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.ILGeneration.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.Lightweight.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Emit.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Extensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Metadata.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Reflection.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Reflection.TypeExtensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Reflection.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Resources.Reader.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Resources.ResourceManager.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Resources.Writer.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.CompilerServices.Unsafe.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.CompilerServices.VisualC.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Extensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Handles.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.JavaScript.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.RuntimeInformation.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.InteropServices.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Intrinsics.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Loader.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Numerics.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Formatters.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Json.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.Xml.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.Serialization.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Runtime.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.AccessControl.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Claims.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Algorithms.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Cng.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Csp.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Encoding.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.OpenSsl.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.X509Certificates.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Cryptography.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Principal.Windows.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.Principal.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.SecureString.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Security.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.ServiceModel.Web.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.ServiceProcess.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.CodePages.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.Extensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Text.Encoding.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Text.Encodings.Web.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Text.Json.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Text.RegularExpressions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Threading.Channels.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Threading.Overlapped.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Dataflow.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Extensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.Parallel.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Threading.Tasks.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Threading.Thread.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Threading.ThreadPool.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Threading.Timer.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Threading.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Transactions.Local.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Transactions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.ValueTuple.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Web.HttpUtility.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Web.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Windows.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Xml.Linq.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Xml.ReaderWriter.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Xml.Serialization.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Xml.XDocument.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Xml.XPath.XDocument.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Xml.XPath.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Xml.XmlDocument.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Xml.XmlSerializer.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.Xml.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/System.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/WindowsBase.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/mscorlib.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/netstandard.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/createdump +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libSystem.Globalization.Native.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libSystem.IO.Compression.Native.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libSystem.Native.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libSystem.Net.Security.Native.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libSystem.Security.Cryptography.Native.OpenSsl.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libclrgc.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libclrjit.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libcoreclr.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libcoreclrtraceptprovider.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libhostfxr.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libhostpolicy.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libmscordaccore.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/libmscordbi.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/publish/Newtonsoft.Json.dll diff --git a/obj/Debug/net7.0/linux-x64/apphost b/obj/Debug/net7.0/linux-x64/apphost new file mode 100755 index 0000000..830ad65 Binary files /dev/null and b/obj/Debug/net7.0/linux-x64/apphost differ diff --git a/obj/Debug/net7.0/linux-x64/callfi.AssemblyInfo.cs b/obj/Debug/net7.0/linux-x64/callfi.AssemblyInfo.cs new file mode 100644 index 0000000..71f972c --- /dev/null +++ b/obj/Debug/net7.0/linux-x64/callfi.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("callfi")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("callfi")] +[assembly: System.Reflection.AssemblyTitleAttribute("callfi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net7.0/linux-x64/callfi.AssemblyInfoInputs.cache b/obj/Debug/net7.0/linux-x64/callfi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ff8fb1e --- /dev/null +++ b/obj/Debug/net7.0/linux-x64/callfi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d841a96d0413da057734129fd2ad7aef5fbe0070271ce73640b15db2bc93247e diff --git a/obj/Debug/net7.0/linux-x64/callfi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/linux-x64/callfi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..65da108 --- /dev/null +++ b/obj/Debug/net7.0/linux-x64/callfi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net7.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 = callfi +build_property.ProjectDir = /root/c projcts/callfi/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/obj/Debug/net7.0/linux-x64/callfi.GlobalUsings.g.cs b/obj/Debug/net7.0/linux-x64/callfi.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net7.0/linux-x64/callfi.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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/obj/Debug/net7.0/linux-x64/callfi.assets.cache b/obj/Debug/net7.0/linux-x64/callfi.assets.cache new file mode 100644 index 0000000..bb620eb Binary files /dev/null and b/obj/Debug/net7.0/linux-x64/callfi.assets.cache differ diff --git a/obj/Debug/net7.0/linux-x64/callfi.csproj.AssemblyReference.cache b/obj/Debug/net7.0/linux-x64/callfi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d3c6bd3 Binary files /dev/null and b/obj/Debug/net7.0/linux-x64/callfi.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net7.0/linux-x64/callfi.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/linux-x64/callfi.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..46e3683 --- /dev/null +++ b/obj/Debug/net7.0/linux-x64/callfi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6109f9cb8eab9a35c1ee9be6dd6cb32c0de4baad6e84cc6d8b299e07b21db0f1 diff --git a/obj/Debug/net7.0/linux-x64/callfi.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/linux-x64/callfi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..9e2ce9a --- /dev/null +++ b/obj/Debug/net7.0/linux-x64/callfi.csproj.FileListAbsolute.txt @@ -0,0 +1,199 @@ +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/callfi +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/callfi.deps.json +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/callfi.runtimeconfig.json +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/callfi.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/callfi.pdb +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/Newtonsoft.Json.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/Microsoft.CSharp.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/Microsoft.VisualBasic.Core.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/Microsoft.VisualBasic.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/Microsoft.Win32.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/Microsoft.Win32.Registry.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.AppContext.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Buffers.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Collections.Concurrent.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Collections.Immutable.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Collections.NonGeneric.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Collections.Specialized.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Collections.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.ComponentModel.Annotations.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.ComponentModel.DataAnnotations.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.ComponentModel.EventBasedAsync.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.ComponentModel.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.ComponentModel.TypeConverter.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.ComponentModel.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Configuration.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Console.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Core.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Data.Common.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Data.DataSetExtensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Data.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Diagnostics.Contracts.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Diagnostics.Debug.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Diagnostics.DiagnosticSource.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Diagnostics.FileVersionInfo.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Diagnostics.Process.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Diagnostics.StackTrace.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Diagnostics.Tools.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Diagnostics.TraceSource.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Diagnostics.Tracing.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Drawing.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Drawing.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Dynamic.Runtime.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Formats.Asn1.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Formats.Tar.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Globalization.Calendars.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Globalization.Extensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Globalization.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.Compression.Brotli.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.Compression.FileSystem.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.Compression.ZipFile.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.Compression.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.AccessControl.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.DriveInfo.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.Watcher.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.FileSystem.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.IsolatedStorage.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.MemoryMappedFiles.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.Pipes.AccessControl.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.Pipes.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.UnmanagedMemoryStream.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.IO.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Linq.Expressions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Linq.Parallel.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Linq.Queryable.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Linq.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Memory.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.Http.Json.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.Http.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.HttpListener.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.Mail.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.NameResolution.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.NetworkInformation.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.Ping.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.Quic.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.Requests.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.Security.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.ServicePoint.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.Sockets.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.WebClient.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.WebHeaderCollection.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.WebProxy.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.WebSockets.Client.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.WebSockets.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Net.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Numerics.Vectors.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Numerics.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.ObjectModel.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Private.CoreLib.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Private.DataContractSerialization.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Private.Uri.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Private.Xml.Linq.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Private.Xml.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Reflection.DispatchProxy.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.ILGeneration.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.Lightweight.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Reflection.Emit.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Reflection.Extensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Reflection.Metadata.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Reflection.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Reflection.TypeExtensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Reflection.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Resources.Reader.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Resources.ResourceManager.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Resources.Writer.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.Extensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.Handles.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.JavaScript.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.InteropServices.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.Intrinsics.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.Loader.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.Numerics.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Formatters.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Json.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.Xml.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.Serialization.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Runtime.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.AccessControl.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Claims.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Algorithms.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Cng.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Csp.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Encoding.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.OpenSsl.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.Primitives.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.X509Certificates.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Cryptography.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Principal.Windows.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.Principal.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.SecureString.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Security.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.ServiceModel.Web.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.ServiceProcess.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Text.Encoding.CodePages.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Text.Encoding.Extensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Text.Encoding.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Text.Encodings.Web.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Text.Json.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Text.RegularExpressions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Threading.Channels.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Threading.Overlapped.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Dataflow.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Extensions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.Parallel.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Threading.Tasks.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Threading.Thread.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Threading.ThreadPool.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Threading.Timer.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Threading.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Transactions.Local.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Transactions.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.ValueTuple.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Web.HttpUtility.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Web.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Windows.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Xml.Linq.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Xml.ReaderWriter.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Xml.Serialization.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Xml.XDocument.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Xml.XPath.XDocument.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Xml.XPath.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Xml.XmlDocument.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Xml.XmlSerializer.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.Xml.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/System.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/WindowsBase.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/mscorlib.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/netstandard.dll +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/createdump +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libSystem.Globalization.Native.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libSystem.IO.Compression.Native.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libSystem.Native.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libSystem.Net.Security.Native.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libclrgc.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libclrjit.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libcoreclr.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libcoreclrtraceptprovider.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libhostfxr.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libhostpolicy.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libmscordaccore.so +/root/c projcts/callfi/bin/Debug/net7.0/linux-x64/libmscordbi.so +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/callfi.csproj.AssemblyReference.cache +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/callfi.GeneratedMSBuildEditorConfig.editorconfig +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/callfi.AssemblyInfoInputs.cache +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/callfi.AssemblyInfo.cs +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/callfi.csproj.CoreCompileInputs.cache +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/callfi.csproj.Up2Date +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/callfi.dll +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/refint/callfi.dll +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/callfi.pdb +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/callfi.genruntimeconfig.cache +/root/c projcts/callfi/obj/Debug/net7.0/linux-x64/ref/callfi.dll diff --git a/obj/Debug/net7.0/linux-x64/callfi.csproj.Up2Date b/obj/Debug/net7.0/linux-x64/callfi.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net7.0/linux-x64/callfi.dll b/obj/Debug/net7.0/linux-x64/callfi.dll new file mode 100644 index 0000000..fef89a2 Binary files /dev/null and b/obj/Debug/net7.0/linux-x64/callfi.dll differ diff --git a/obj/Debug/net7.0/linux-x64/callfi.genruntimeconfig.cache b/obj/Debug/net7.0/linux-x64/callfi.genruntimeconfig.cache new file mode 100644 index 0000000..46cccf1 --- /dev/null +++ b/obj/Debug/net7.0/linux-x64/callfi.genruntimeconfig.cache @@ -0,0 +1 @@ +27e013bad65c255f02ea55d132260623f79cddf5245077b90d86a26001eeaf6e diff --git a/obj/Debug/net7.0/linux-x64/callfi.pdb b/obj/Debug/net7.0/linux-x64/callfi.pdb new file mode 100644 index 0000000..c03cc41 Binary files /dev/null and b/obj/Debug/net7.0/linux-x64/callfi.pdb differ diff --git a/obj/Debug/net7.0/linux-x64/ref/callfi.dll b/obj/Debug/net7.0/linux-x64/ref/callfi.dll new file mode 100644 index 0000000..bbce5e3 Binary files /dev/null and b/obj/Debug/net7.0/linux-x64/ref/callfi.dll differ diff --git a/obj/Debug/net7.0/linux-x64/refint/callfi.dll b/obj/Debug/net7.0/linux-x64/refint/callfi.dll new file mode 100644 index 0000000..bbce5e3 Binary files /dev/null and b/obj/Debug/net7.0/linux-x64/refint/callfi.dll differ diff --git a/obj/Debug/net7.0/ref/callfi.dll b/obj/Debug/net7.0/ref/callfi.dll new file mode 100644 index 0000000..a7f78cb Binary files /dev/null and b/obj/Debug/net7.0/ref/callfi.dll differ diff --git a/obj/Debug/net7.0/refint/callfi.dll b/obj/Debug/net7.0/refint/callfi.dll new file mode 100644 index 0000000..a7f78cb Binary files /dev/null and b/obj/Debug/net7.0/refint/callfi.dll differ diff --git a/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..dca70aa --- /dev/null +++ b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/obj/Debug/net8.0/apphost b/obj/Debug/net8.0/apphost new file mode 100755 index 0000000..bacb62c Binary files /dev/null and b/obj/Debug/net8.0/apphost differ diff --git a/obj/Debug/net8.0/callfi.AssemblyInfo.cs b/obj/Debug/net8.0/callfi.AssemblyInfo.cs new file mode 100644 index 0000000..71f972c --- /dev/null +++ b/obj/Debug/net8.0/callfi.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("callfi")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("callfi")] +[assembly: System.Reflection.AssemblyTitleAttribute("callfi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net8.0/callfi.AssemblyInfoInputs.cache b/obj/Debug/net8.0/callfi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ff8fb1e --- /dev/null +++ b/obj/Debug/net8.0/callfi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d841a96d0413da057734129fd2ad7aef5fbe0070271ce73640b15db2bc93247e diff --git a/obj/Debug/net8.0/callfi.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0/callfi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8edafc7 --- /dev/null +++ b/obj/Debug/net8.0/callfi.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 = callfi +build_property.ProjectDir = /root/c projcts/callfi/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/obj/Debug/net8.0/callfi.GlobalUsings.g.cs b/obj/Debug/net8.0/callfi.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net8.0/callfi.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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/obj/Debug/net8.0/callfi.assets.cache b/obj/Debug/net8.0/callfi.assets.cache new file mode 100644 index 0000000..442d740 Binary files /dev/null and b/obj/Debug/net8.0/callfi.assets.cache differ diff --git a/obj/Debug/net8.0/callfi.csproj.AssemblyReference.cache b/obj/Debug/net8.0/callfi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d3c6bd3 Binary files /dev/null and b/obj/Debug/net8.0/callfi.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net8.0/callfi.csproj.CoreCompileInputs.cache b/obj/Debug/net8.0/callfi.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..3e3e77c --- /dev/null +++ b/obj/Debug/net8.0/callfi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +60a2db5ade6fa0a65e472185a885ddb7b276c8c28476abd5e6ecc6679c06ae74 diff --git a/obj/Debug/net8.0/callfi.csproj.FileListAbsolute.txt b/obj/Debug/net8.0/callfi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..0bcd909 --- /dev/null +++ b/obj/Debug/net8.0/callfi.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +/root/c projcts/callfi/bin/Debug/net8.0/callfi +/root/c projcts/callfi/bin/Debug/net8.0/callfi.deps.json +/root/c projcts/callfi/bin/Debug/net8.0/callfi.runtimeconfig.json +/root/c projcts/callfi/bin/Debug/net8.0/callfi.dll +/root/c projcts/callfi/bin/Debug/net8.0/callfi.pdb +/root/c projcts/callfi/bin/Debug/net8.0/Newtonsoft.Json.dll +/root/c projcts/callfi/obj/Debug/net8.0/callfi.csproj.AssemblyReference.cache +/root/c projcts/callfi/obj/Debug/net8.0/callfi.GeneratedMSBuildEditorConfig.editorconfig +/root/c projcts/callfi/obj/Debug/net8.0/callfi.AssemblyInfoInputs.cache +/root/c projcts/callfi/obj/Debug/net8.0/callfi.AssemblyInfo.cs +/root/c projcts/callfi/obj/Debug/net8.0/callfi.csproj.CoreCompileInputs.cache +/root/c projcts/callfi/obj/Debug/net8.0/callfi.csproj.Up2Date +/root/c projcts/callfi/obj/Debug/net8.0/callfi.dll +/root/c projcts/callfi/obj/Debug/net8.0/refint/callfi.dll +/root/c projcts/callfi/obj/Debug/net8.0/callfi.pdb +/root/c projcts/callfi/obj/Debug/net8.0/callfi.genruntimeconfig.cache +/root/c projcts/callfi/obj/Debug/net8.0/ref/callfi.dll diff --git a/obj/Debug/net8.0/callfi.csproj.Up2Date b/obj/Debug/net8.0/callfi.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net8.0/callfi.dll b/obj/Debug/net8.0/callfi.dll new file mode 100644 index 0000000..145a4c3 Binary files /dev/null and b/obj/Debug/net8.0/callfi.dll differ diff --git a/obj/Debug/net8.0/callfi.genruntimeconfig.cache b/obj/Debug/net8.0/callfi.genruntimeconfig.cache new file mode 100644 index 0000000..c0094a3 --- /dev/null +++ b/obj/Debug/net8.0/callfi.genruntimeconfig.cache @@ -0,0 +1 @@ +951069054fb627591a08ac94b375d529b8199d14bb8b1dca0c34ab0b5762080b diff --git a/obj/Debug/net8.0/callfi.pdb b/obj/Debug/net8.0/callfi.pdb new file mode 100644 index 0000000..f44ade5 Binary files /dev/null and b/obj/Debug/net8.0/callfi.pdb differ diff --git a/obj/Debug/net8.0/ref/callfi.dll b/obj/Debug/net8.0/ref/callfi.dll new file mode 100644 index 0000000..a65490a Binary files /dev/null and b/obj/Debug/net8.0/ref/callfi.dll differ diff --git a/obj/Debug/net8.0/refint/callfi.dll b/obj/Debug/net8.0/refint/callfi.dll new file mode 100644 index 0000000..a65490a Binary files /dev/null and b/obj/Debug/net8.0/refint/callfi.dll differ diff --git a/obj/callfi.csproj.nuget.dgspec.json b/obj/callfi.csproj.nuget.dgspec.json new file mode 100644 index 0000000..be0f1e2 --- /dev/null +++ b/obj/callfi.csproj.nuget.dgspec.json @@ -0,0 +1,90 @@ +{ + "format": 1, + "restore": { + "/root/c projcts/callfi/callfi.csproj": {} + }, + "projects": { + "/root/c projcts/callfi/callfi.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/root/c projcts/callfi/callfi.csproj", + "projectName": "callfi", + "projectPath": "/root/c projcts/callfi/callfi.csproj", + "packagesPath": "/root/.nuget/packages/", + "outputPath": "/root/c projcts/callfi/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/root/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "System.Net.Http": { + "target": "Package", + "version": "[4.3.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.20, 7.0.20]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[7.0.20, 7.0.20]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[7.0.20, 7.0.20]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.301/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/callfi.csproj.nuget.g.props b/obj/callfi.csproj.nuget.g.props new file mode 100644 index 0000000..ecc98bd --- /dev/null +++ b/obj/callfi.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /root/.nuget/packages/ + /root/.nuget/packages/ + PackageReference + 6.10.0 + + + + + \ No newline at end of file diff --git a/obj/callfi.csproj.nuget.g.targets b/obj/callfi.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/callfi.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..5951b21 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,3010 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Microsoft.NETCore.Platforms/1.1.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Net.Http/4.3.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + } + } + }, + "libraries": { + "Microsoft.NETCore.Platforms/1.1.1": { + "sha512": "TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.1.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Net.Http/4.3.4": { + "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "type": "package", + "path": "system.net.http/4.3.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.4.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "Newtonsoft.Json >= 13.0.3", + "System.Net.Http >= 4.3.4" + ] + }, + "packageFolders": { + "/root/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/root/c projcts/callfi/callfi.csproj", + "projectName": "callfi", + "projectPath": "/root/c projcts/callfi/callfi.csproj", + "packagesPath": "/root/.nuget/packages/", + "outputPath": "/root/c projcts/callfi/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/root/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "System.Net.Http": { + "target": "Package", + "version": "[4.3.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.20, 7.0.20]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[7.0.20, 7.0.20]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[7.0.20, 7.0.20]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.301/RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..7d5a7f2 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,62 @@ +{ + "version": 2, + "dgSpecHash": "MMkVNLvqwjQ=", + "success": true, + "projectFilePath": "/root/c projcts/callfi/callfi.csproj", + "expectedPackageFiles": [ + "/root/.nuget/packages/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg.sha512", + "/root/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/root/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/root/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.net.http/4.3.4/system.net.http.4.3.4.nupkg.sha512", + "/root/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/root/.nuget/packages/microsoft.netcore.app.ref/7.0.20/microsoft.netcore.app.ref.7.0.20.nupkg.sha512", + "/root/.nuget/packages/microsoft.aspnetcore.app.ref/7.0.20/microsoft.aspnetcore.app.ref.7.0.20.nupkg.sha512", + "/root/.nuget/packages/microsoft.netcore.app.host.linux-x64/7.0.20/microsoft.netcore.app.host.linux-x64.7.0.20.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file