diff --git a/NostrServices/Controllers/AvatarController.cs b/NostrServices/Controllers/AvatarController.cs new file mode 100644 index 0000000..d90a964 --- /dev/null +++ b/NostrServices/Controllers/AvatarController.cs @@ -0,0 +1,30 @@ +using System.Text; +using Microsoft.AspNetCore.Mvc; + +namespace NostrServices.Controllers; + +[Route("/api/v1/avatar")] +public class AvatarController : Controller +{ + /// + /// Robohash avatar endpoints + /// + /// + /// Available sets: `cyberpunks` + /// + /// + /// Any value, can contain a file extension, response is only image/webp + /// + [HttpGet("{set}/{value}")] + [ResponseCache(Location = ResponseCacheLocation.Any, Duration = 86400)] + public IActionResult GetAvatar([FromRoute] string set, [FromRoute] string value) + { + var hash = System.Security.Cryptography.SHA256.HashData( + Encoding.UTF8.GetBytes(Path.GetFileNameWithoutExtension(value))); + var hashInt = BitConverter.ToInt32(hash); + var dir = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", set); + var fileList = Directory.EnumerateFiles(dir, "*.webp").ToList(); + var pickImg = fileList[Math.Abs(hashInt % fileList.Count)]; + return PhysicalFile(pickImg, "image/webp"); + } +} \ No newline at end of file diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00001_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00001_.webp new file mode 100644 index 0000000..ba6ad9a Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00001_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00002_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00002_.webp new file mode 100644 index 0000000..76a57cc Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00002_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00003_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00003_.webp new file mode 100644 index 0000000..66d1421 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00003_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00004_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00004_.webp new file mode 100644 index 0000000..ff522c7 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00004_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00005_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00005_.webp new file mode 100644 index 0000000..4c27d2f Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00005_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00006_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00006_.webp new file mode 100644 index 0000000..a8ea9f8 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00006_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00007_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00007_.webp new file mode 100644 index 0000000..f4b5730 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00007_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00008_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00008_.webp new file mode 100644 index 0000000..354d256 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00008_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00009_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00009_.webp new file mode 100644 index 0000000..1f7cea8 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00009_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00010_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00010_.webp new file mode 100644 index 0000000..e9d0a24 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00010_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00011_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00011_.webp new file mode 100644 index 0000000..65b1ee6 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00011_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00012_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00012_.webp new file mode 100644 index 0000000..20770dd Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00012_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00013_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00013_.webp new file mode 100644 index 0000000..968a4b4 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00013_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00014_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00014_.webp new file mode 100644 index 0000000..ac7579d Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00014_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00015_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00015_.webp new file mode 100644 index 0000000..f5c7027 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00015_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00016_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00016_.webp new file mode 100644 index 0000000..e84bad3 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00016_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00017_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00017_.webp new file mode 100644 index 0000000..5f61a4a Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00017_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00018_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00018_.webp new file mode 100644 index 0000000..f2cd0ac Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00018_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00019_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00019_.webp new file mode 100644 index 0000000..e9fdf52 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00019_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00020_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00020_.webp new file mode 100644 index 0000000..839bf01 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00020_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00021_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00021_.webp new file mode 100644 index 0000000..5e6b58e Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00021_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00022_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00022_.webp new file mode 100644 index 0000000..53b2bf4 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00022_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00023_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00023_.webp new file mode 100644 index 0000000..b67200b Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00023_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00024_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00024_.webp new file mode 100644 index 0000000..aeb8119 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00024_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00025_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00025_.webp new file mode 100644 index 0000000..11dd8a2 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00025_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00026_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00026_.webp new file mode 100644 index 0000000..98299f0 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00026_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00027_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00027_.webp new file mode 100644 index 0000000..e98afa2 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00027_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00028_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00028_.webp new file mode 100644 index 0000000..ee91f10 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00028_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00029_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00029_.webp new file mode 100644 index 0000000..f6ca506 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00029_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00030_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00030_.webp new file mode 100644 index 0000000..aea2255 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00030_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00031_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00031_.webp new file mode 100644 index 0000000..07d956b Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00031_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00032_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00032_.webp new file mode 100644 index 0000000..b130670 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00032_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00033_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00033_.webp new file mode 100644 index 0000000..bac364b Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00033_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00034_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00034_.webp new file mode 100644 index 0000000..439c1a1 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00034_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00035_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00035_.webp new file mode 100644 index 0000000..b3353f3 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00035_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00036_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00036_.webp new file mode 100644 index 0000000..5547b0e Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00036_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00037_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00037_.webp new file mode 100644 index 0000000..fc302ee Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00037_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00038_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00038_.webp new file mode 100644 index 0000000..f9bd773 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00038_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00039_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00039_.webp new file mode 100644 index 0000000..a2e8a58 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00039_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00040_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00040_.webp new file mode 100644 index 0000000..44391df Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00040_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00041_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00041_.webp new file mode 100644 index 0000000..d984e0b Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00041_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00042_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00042_.webp new file mode 100644 index 0000000..6e1c255 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00042_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00043_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00043_.webp new file mode 100644 index 0000000..f8879fe Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00043_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00044_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00044_.webp new file mode 100644 index 0000000..fae36cc Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00044_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00045_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00045_.webp new file mode 100644 index 0000000..3e850f8 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00045_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00046_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00046_.webp new file mode 100644 index 0000000..5ced567 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00046_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00047_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00047_.webp new file mode 100644 index 0000000..f78e47d Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00047_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00048_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00048_.webp new file mode 100644 index 0000000..7302ed2 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00048_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00049_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00049_.webp new file mode 100644 index 0000000..008a75d Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00049_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00050_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00050_.webp new file mode 100644 index 0000000..f9a7421 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00050_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00051_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00051_.webp new file mode 100644 index 0000000..2ebb281 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00051_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00052_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00052_.webp new file mode 100644 index 0000000..075a9a8 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00052_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00053_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00053_.webp new file mode 100644 index 0000000..fc9fc30 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00053_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00054_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00054_.webp new file mode 100644 index 0000000..a61be3e Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00054_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00055_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00055_.webp new file mode 100644 index 0000000..d2c22ca Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00055_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00056_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00056_.webp new file mode 100644 index 0000000..97f655a Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00056_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00057_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00057_.webp new file mode 100644 index 0000000..f02051f Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00057_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00058_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00058_.webp new file mode 100644 index 0000000..110063c Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00058_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00059_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00059_.webp new file mode 100644 index 0000000..007b1e8 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00059_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00060_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00060_.webp new file mode 100644 index 0000000..e2f39ce Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00060_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00061_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00061_.webp new file mode 100644 index 0000000..aa2a2bd Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00061_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00062_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00062_.webp new file mode 100644 index 0000000..3c9b17a Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00062_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00063_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00063_.webp new file mode 100644 index 0000000..04237c7 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00063_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00064_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00064_.webp new file mode 100644 index 0000000..2872eaf Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00064_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00065_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00065_.webp new file mode 100644 index 0000000..ce9f2b7 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00065_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00066_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00066_.webp new file mode 100644 index 0000000..caa6b9c Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00066_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00067_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00067_.webp new file mode 100644 index 0000000..35e5dda Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00067_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00068_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00068_.webp new file mode 100644 index 0000000..255f70c Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00068_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00069_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00069_.webp new file mode 100644 index 0000000..f058da4 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00069_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00070_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00070_.webp new file mode 100644 index 0000000..5cf011b Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00070_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00071_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00071_.webp new file mode 100644 index 0000000..7c07339 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00071_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00072_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00072_.webp new file mode 100644 index 0000000..4cb7354 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00072_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00073_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00073_.webp new file mode 100644 index 0000000..432e42f Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00073_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00074_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00074_.webp new file mode 100644 index 0000000..64ef6f6 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00074_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00075_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00075_.webp new file mode 100644 index 0000000..c0557e2 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00075_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00076_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00076_.webp new file mode 100644 index 0000000..d9f94c5 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00076_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00077_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00077_.webp new file mode 100644 index 0000000..d3d628f Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00077_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00078_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00078_.webp new file mode 100644 index 0000000..5cdff72 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00078_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00079_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00079_.webp new file mode 100644 index 0000000..657d343 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00079_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00080_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00080_.webp new file mode 100644 index 0000000..4b34237 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00080_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00081_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00081_.webp new file mode 100644 index 0000000..7939bee Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00081_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00082_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00082_.webp new file mode 100644 index 0000000..896b1e6 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00082_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00083_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00083_.webp new file mode 100644 index 0000000..f30081a Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00083_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00084_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00084_.webp new file mode 100644 index 0000000..49e21b0 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00084_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00085_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00085_.webp new file mode 100644 index 0000000..feaf0c4 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00085_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00086_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00086_.webp new file mode 100644 index 0000000..88cabc3 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00086_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00087_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00087_.webp new file mode 100644 index 0000000..80b59ba Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00087_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00088_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00088_.webp new file mode 100644 index 0000000..a440a26 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00088_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00089_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00089_.webp new file mode 100644 index 0000000..6ee7ccb Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00089_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00090_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00090_.webp new file mode 100644 index 0000000..876337f Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00090_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00091_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00091_.webp new file mode 100644 index 0000000..bf5054c Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00091_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00092_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00092_.webp new file mode 100644 index 0000000..b4b7ab8 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00092_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00093_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00093_.webp new file mode 100644 index 0000000..3688bf7 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00093_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00094_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00094_.webp new file mode 100644 index 0000000..d6c4660 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00094_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00095_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00095_.webp new file mode 100644 index 0000000..9f8317d Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00095_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00096_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00096_.webp new file mode 100644 index 0000000..2f4ea5b Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00096_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00097_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00097_.webp new file mode 100644 index 0000000..b5815d8 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00097_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00098_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00098_.webp new file mode 100644 index 0000000..66bbfd7 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00098_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00099_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00099_.webp new file mode 100644 index 0000000..9bc9b11 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00099_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00100_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00100_.webp new file mode 100644 index 0000000..2148194 Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00100_.webp differ diff --git a/NostrServices/wwwroot/cyberpunks/robohash_00101_.webp b/NostrServices/wwwroot/cyberpunks/robohash_00101_.webp new file mode 100644 index 0000000..3fc24cf Binary files /dev/null and b/NostrServices/wwwroot/cyberpunks/robohash_00101_.webp differ diff --git a/NostrServices/wwwroot/robots/Robot1.webp b/NostrServices/wwwroot/robots/Robot1.webp new file mode 100644 index 0000000..4cdd367 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot1.webp differ diff --git a/NostrServices/wwwroot/robots/Robot10.webp b/NostrServices/wwwroot/robots/Robot10.webp new file mode 100644 index 0000000..6c2a752 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot10.webp differ diff --git a/NostrServices/wwwroot/robots/Robot11.webp b/NostrServices/wwwroot/robots/Robot11.webp new file mode 100644 index 0000000..81107a0 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot11.webp differ diff --git a/NostrServices/wwwroot/robots/Robot12.webp b/NostrServices/wwwroot/robots/Robot12.webp new file mode 100644 index 0000000..a8ab0c2 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot12.webp differ diff --git a/NostrServices/wwwroot/robots/Robot13.webp b/NostrServices/wwwroot/robots/Robot13.webp new file mode 100644 index 0000000..059e00f Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot13.webp differ diff --git a/NostrServices/wwwroot/robots/Robot14.webp b/NostrServices/wwwroot/robots/Robot14.webp new file mode 100644 index 0000000..48f3c4b Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot14.webp differ diff --git a/NostrServices/wwwroot/robots/Robot15.webp b/NostrServices/wwwroot/robots/Robot15.webp new file mode 100644 index 0000000..32858cd Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot15.webp differ diff --git a/NostrServices/wwwroot/robots/Robot16.webp b/NostrServices/wwwroot/robots/Robot16.webp new file mode 100644 index 0000000..08e668b Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot16.webp differ diff --git a/NostrServices/wwwroot/robots/Robot17.webp b/NostrServices/wwwroot/robots/Robot17.webp new file mode 100644 index 0000000..386d9b1 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot17.webp differ diff --git a/NostrServices/wwwroot/robots/Robot18.webp b/NostrServices/wwwroot/robots/Robot18.webp new file mode 100644 index 0000000..bd634f7 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot18.webp differ diff --git a/NostrServices/wwwroot/robots/Robot19.webp b/NostrServices/wwwroot/robots/Robot19.webp new file mode 100644 index 0000000..39c0db0 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot19.webp differ diff --git a/NostrServices/wwwroot/robots/Robot2.webp b/NostrServices/wwwroot/robots/Robot2.webp new file mode 100644 index 0000000..0a7190d Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot2.webp differ diff --git a/NostrServices/wwwroot/robots/Robot20.webp b/NostrServices/wwwroot/robots/Robot20.webp new file mode 100644 index 0000000..f2f49f5 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot20.webp differ diff --git a/NostrServices/wwwroot/robots/Robot21.webp b/NostrServices/wwwroot/robots/Robot21.webp new file mode 100644 index 0000000..f6c9b84 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot21.webp differ diff --git a/NostrServices/wwwroot/robots/Robot22.webp b/NostrServices/wwwroot/robots/Robot22.webp new file mode 100644 index 0000000..b4931d6 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot22.webp differ diff --git a/NostrServices/wwwroot/robots/Robot23.webp b/NostrServices/wwwroot/robots/Robot23.webp new file mode 100644 index 0000000..16565bf Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot23.webp differ diff --git a/NostrServices/wwwroot/robots/Robot24.webp b/NostrServices/wwwroot/robots/Robot24.webp new file mode 100644 index 0000000..a476e49 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot24.webp differ diff --git a/NostrServices/wwwroot/robots/Robot25.webp b/NostrServices/wwwroot/robots/Robot25.webp new file mode 100644 index 0000000..704b45e Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot25.webp differ diff --git a/NostrServices/wwwroot/robots/Robot26.webp b/NostrServices/wwwroot/robots/Robot26.webp new file mode 100644 index 0000000..fc0e191 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot26.webp differ diff --git a/NostrServices/wwwroot/robots/Robot27.webp b/NostrServices/wwwroot/robots/Robot27.webp new file mode 100644 index 0000000..9b356ac Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot27.webp differ diff --git a/NostrServices/wwwroot/robots/Robot28.webp b/NostrServices/wwwroot/robots/Robot28.webp new file mode 100644 index 0000000..345be27 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot28.webp differ diff --git a/NostrServices/wwwroot/robots/Robot29.webp b/NostrServices/wwwroot/robots/Robot29.webp new file mode 100644 index 0000000..e336114 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot29.webp differ diff --git a/NostrServices/wwwroot/robots/Robot3.webp b/NostrServices/wwwroot/robots/Robot3.webp new file mode 100644 index 0000000..d7d8d19 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot3.webp differ diff --git a/NostrServices/wwwroot/robots/Robot30.webp b/NostrServices/wwwroot/robots/Robot30.webp new file mode 100644 index 0000000..6488702 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot30.webp differ diff --git a/NostrServices/wwwroot/robots/Robot31.webp b/NostrServices/wwwroot/robots/Robot31.webp new file mode 100644 index 0000000..a243083 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot31.webp differ diff --git a/NostrServices/wwwroot/robots/Robot32.webp b/NostrServices/wwwroot/robots/Robot32.webp new file mode 100644 index 0000000..7199c48 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot32.webp differ diff --git a/NostrServices/wwwroot/robots/Robot33.webp b/NostrServices/wwwroot/robots/Robot33.webp new file mode 100644 index 0000000..2af3bd9 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot33.webp differ diff --git a/NostrServices/wwwroot/robots/Robot34.webp b/NostrServices/wwwroot/robots/Robot34.webp new file mode 100644 index 0000000..738d56a Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot34.webp differ diff --git a/NostrServices/wwwroot/robots/Robot35.webp b/NostrServices/wwwroot/robots/Robot35.webp new file mode 100644 index 0000000..3f1d92b Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot35.webp differ diff --git a/NostrServices/wwwroot/robots/Robot36.webp b/NostrServices/wwwroot/robots/Robot36.webp new file mode 100644 index 0000000..e1d4e00 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot36.webp differ diff --git a/NostrServices/wwwroot/robots/Robot37.webp b/NostrServices/wwwroot/robots/Robot37.webp new file mode 100644 index 0000000..b50c0dc Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot37.webp differ diff --git a/NostrServices/wwwroot/robots/Robot38.webp b/NostrServices/wwwroot/robots/Robot38.webp new file mode 100644 index 0000000..d905ed3 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot38.webp differ diff --git a/NostrServices/wwwroot/robots/Robot4.webp b/NostrServices/wwwroot/robots/Robot4.webp new file mode 100644 index 0000000..ade830e Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot4.webp differ diff --git a/NostrServices/wwwroot/robots/Robot40.webp b/NostrServices/wwwroot/robots/Robot40.webp new file mode 100644 index 0000000..e7a1f93 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot40.webp differ diff --git a/NostrServices/wwwroot/robots/Robot41.webp b/NostrServices/wwwroot/robots/Robot41.webp new file mode 100644 index 0000000..114c958 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot41.webp differ diff --git a/NostrServices/wwwroot/robots/Robot42.webp b/NostrServices/wwwroot/robots/Robot42.webp new file mode 100644 index 0000000..3d55025 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot42.webp differ diff --git a/NostrServices/wwwroot/robots/Robot43.webp b/NostrServices/wwwroot/robots/Robot43.webp new file mode 100644 index 0000000..499a504 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot43.webp differ diff --git a/NostrServices/wwwroot/robots/Robot44.webp b/NostrServices/wwwroot/robots/Robot44.webp new file mode 100644 index 0000000..de56e19 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot44.webp differ diff --git a/NostrServices/wwwroot/robots/Robot45.webp b/NostrServices/wwwroot/robots/Robot45.webp new file mode 100644 index 0000000..bb9eb8d Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot45.webp differ diff --git a/NostrServices/wwwroot/robots/Robot46.webp b/NostrServices/wwwroot/robots/Robot46.webp new file mode 100644 index 0000000..a4387ea Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot46.webp differ diff --git a/NostrServices/wwwroot/robots/Robot47.webp b/NostrServices/wwwroot/robots/Robot47.webp new file mode 100644 index 0000000..c5ce134 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot47.webp differ diff --git a/NostrServices/wwwroot/robots/Robot48.webp b/NostrServices/wwwroot/robots/Robot48.webp new file mode 100644 index 0000000..ca0bd3b Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot48.webp differ diff --git a/NostrServices/wwwroot/robots/Robot49.webp b/NostrServices/wwwroot/robots/Robot49.webp new file mode 100644 index 0000000..8e903e7 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot49.webp differ diff --git a/NostrServices/wwwroot/robots/Robot5.webp b/NostrServices/wwwroot/robots/Robot5.webp new file mode 100644 index 0000000..1ba6f2f Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot5.webp differ diff --git a/NostrServices/wwwroot/robots/Robot50.webp b/NostrServices/wwwroot/robots/Robot50.webp new file mode 100644 index 0000000..6555532 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot50.webp differ diff --git a/NostrServices/wwwroot/robots/Robot51.webp b/NostrServices/wwwroot/robots/Robot51.webp new file mode 100644 index 0000000..39f7c7d Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot51.webp differ diff --git a/NostrServices/wwwroot/robots/Robot52.webp b/NostrServices/wwwroot/robots/Robot52.webp new file mode 100644 index 0000000..f699b8d Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot52.webp differ diff --git a/NostrServices/wwwroot/robots/Robot53.webp b/NostrServices/wwwroot/robots/Robot53.webp new file mode 100644 index 0000000..24e26d0 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot53.webp differ diff --git a/NostrServices/wwwroot/robots/Robot54.webp b/NostrServices/wwwroot/robots/Robot54.webp new file mode 100644 index 0000000..6623b57 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot54.webp differ diff --git a/NostrServices/wwwroot/robots/Robot55.webp b/NostrServices/wwwroot/robots/Robot55.webp new file mode 100644 index 0000000..181239c Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot55.webp differ diff --git a/NostrServices/wwwroot/robots/Robot56.webp b/NostrServices/wwwroot/robots/Robot56.webp new file mode 100644 index 0000000..506b193 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot56.webp differ diff --git a/NostrServices/wwwroot/robots/Robot57.webp b/NostrServices/wwwroot/robots/Robot57.webp new file mode 100644 index 0000000..4962b02 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot57.webp differ diff --git a/NostrServices/wwwroot/robots/Robot58.webp b/NostrServices/wwwroot/robots/Robot58.webp new file mode 100644 index 0000000..e997ce3 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot58.webp differ diff --git a/NostrServices/wwwroot/robots/Robot59.webp b/NostrServices/wwwroot/robots/Robot59.webp new file mode 100644 index 0000000..5bba7f6 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot59.webp differ diff --git a/NostrServices/wwwroot/robots/Robot6.webp b/NostrServices/wwwroot/robots/Robot6.webp new file mode 100644 index 0000000..cf6168a Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot6.webp differ diff --git a/NostrServices/wwwroot/robots/Robot60.webp b/NostrServices/wwwroot/robots/Robot60.webp new file mode 100644 index 0000000..a1790cf Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot60.webp differ diff --git a/NostrServices/wwwroot/robots/Robot61.webp b/NostrServices/wwwroot/robots/Robot61.webp new file mode 100644 index 0000000..953a967 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot61.webp differ diff --git a/NostrServices/wwwroot/robots/Robot62.webp b/NostrServices/wwwroot/robots/Robot62.webp new file mode 100644 index 0000000..71c894f Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot62.webp differ diff --git a/NostrServices/wwwroot/robots/Robot63.webp b/NostrServices/wwwroot/robots/Robot63.webp new file mode 100644 index 0000000..fc40403 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot63.webp differ diff --git a/NostrServices/wwwroot/robots/Robot64.webp b/NostrServices/wwwroot/robots/Robot64.webp new file mode 100644 index 0000000..3e62d6b Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot64.webp differ diff --git a/NostrServices/wwwroot/robots/Robot65.webp b/NostrServices/wwwroot/robots/Robot65.webp new file mode 100644 index 0000000..1204360 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot65.webp differ diff --git a/NostrServices/wwwroot/robots/Robot66.webp b/NostrServices/wwwroot/robots/Robot66.webp new file mode 100644 index 0000000..8c2ecd2 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot66.webp differ diff --git a/NostrServices/wwwroot/robots/Robot67.webp b/NostrServices/wwwroot/robots/Robot67.webp new file mode 100644 index 0000000..20f8e59 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot67.webp differ diff --git a/NostrServices/wwwroot/robots/Robot68.webp b/NostrServices/wwwroot/robots/Robot68.webp new file mode 100644 index 0000000..3796ec5 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot68.webp differ diff --git a/NostrServices/wwwroot/robots/Robot69.webp b/NostrServices/wwwroot/robots/Robot69.webp new file mode 100644 index 0000000..639b4b8 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot69.webp differ diff --git a/NostrServices/wwwroot/robots/Robot7.webp b/NostrServices/wwwroot/robots/Robot7.webp new file mode 100644 index 0000000..a2262fe Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot7.webp differ diff --git a/NostrServices/wwwroot/robots/Robot8.webp b/NostrServices/wwwroot/robots/Robot8.webp new file mode 100644 index 0000000..97bbd8c Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot8.webp differ diff --git a/NostrServices/wwwroot/robots/Robot9.webp b/NostrServices/wwwroot/robots/Robot9.webp new file mode 100644 index 0000000..88970e5 Binary files /dev/null and b/NostrServices/wwwroot/robots/Robot9.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie1.webp b/NostrServices/wwwroot/zombies/zombie1.webp new file mode 100644 index 0000000..79fec3a Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie1.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie10.webp b/NostrServices/wwwroot/zombies/zombie10.webp new file mode 100644 index 0000000..a591874 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie10.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie11.webp b/NostrServices/wwwroot/zombies/zombie11.webp new file mode 100644 index 0000000..117f221 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie11.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie12.webp b/NostrServices/wwwroot/zombies/zombie12.webp new file mode 100644 index 0000000..294f5a3 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie12.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie13.webp b/NostrServices/wwwroot/zombies/zombie13.webp new file mode 100644 index 0000000..ec0f8ed Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie13.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie14.webp b/NostrServices/wwwroot/zombies/zombie14.webp new file mode 100644 index 0000000..04dc2fc Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie14.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie15.webp b/NostrServices/wwwroot/zombies/zombie15.webp new file mode 100644 index 0000000..3eff71d Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie15.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie16.webp b/NostrServices/wwwroot/zombies/zombie16.webp new file mode 100644 index 0000000..f12be1a Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie16.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie17.webp b/NostrServices/wwwroot/zombies/zombie17.webp new file mode 100644 index 0000000..16ada21 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie17.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie18.webp b/NostrServices/wwwroot/zombies/zombie18.webp new file mode 100644 index 0000000..7f82531 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie18.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie19.webp b/NostrServices/wwwroot/zombies/zombie19.webp new file mode 100644 index 0000000..793eb1a Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie19.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie2.webp b/NostrServices/wwwroot/zombies/zombie2.webp new file mode 100644 index 0000000..e273089 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie2.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie20.webp b/NostrServices/wwwroot/zombies/zombie20.webp new file mode 100644 index 0000000..d229bd8 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie20.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie21.webp b/NostrServices/wwwroot/zombies/zombie21.webp new file mode 100644 index 0000000..766ded7 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie21.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie22.webp b/NostrServices/wwwroot/zombies/zombie22.webp new file mode 100644 index 0000000..2235d0a Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie22.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie23.webp b/NostrServices/wwwroot/zombies/zombie23.webp new file mode 100644 index 0000000..1897ba5 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie23.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie24.webp b/NostrServices/wwwroot/zombies/zombie24.webp new file mode 100644 index 0000000..5e1c7d2 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie24.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie25.webp b/NostrServices/wwwroot/zombies/zombie25.webp new file mode 100644 index 0000000..01cb138 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie25.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie26.webp b/NostrServices/wwwroot/zombies/zombie26.webp new file mode 100644 index 0000000..1894926 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie26.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie27.webp b/NostrServices/wwwroot/zombies/zombie27.webp new file mode 100644 index 0000000..afc6289 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie27.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie28.webp b/NostrServices/wwwroot/zombies/zombie28.webp new file mode 100644 index 0000000..e43a00e Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie28.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie29.webp b/NostrServices/wwwroot/zombies/zombie29.webp new file mode 100644 index 0000000..407ebe1 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie29.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie3.webp b/NostrServices/wwwroot/zombies/zombie3.webp new file mode 100644 index 0000000..c25482c Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie3.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie30.webp b/NostrServices/wwwroot/zombies/zombie30.webp new file mode 100644 index 0000000..b37ef78 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie30.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie31.webp b/NostrServices/wwwroot/zombies/zombie31.webp new file mode 100644 index 0000000..a7f1394 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie31.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie32.webp b/NostrServices/wwwroot/zombies/zombie32.webp new file mode 100644 index 0000000..721119f Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie32.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie33.webp b/NostrServices/wwwroot/zombies/zombie33.webp new file mode 100644 index 0000000..1e1d9a1 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie33.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie34.webp b/NostrServices/wwwroot/zombies/zombie34.webp new file mode 100644 index 0000000..5b16dcc Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie34.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie35.webp b/NostrServices/wwwroot/zombies/zombie35.webp new file mode 100644 index 0000000..8b7e967 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie35.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie36.webp b/NostrServices/wwwroot/zombies/zombie36.webp new file mode 100644 index 0000000..88c7a33 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie36.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie37.webp b/NostrServices/wwwroot/zombies/zombie37.webp new file mode 100644 index 0000000..df192eb Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie37.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie38.webp b/NostrServices/wwwroot/zombies/zombie38.webp new file mode 100644 index 0000000..44085c2 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie38.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie39.webp b/NostrServices/wwwroot/zombies/zombie39.webp new file mode 100644 index 0000000..2e1f703 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie39.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie4.webp b/NostrServices/wwwroot/zombies/zombie4.webp new file mode 100644 index 0000000..e839de4 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie4.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie40.webp b/NostrServices/wwwroot/zombies/zombie40.webp new file mode 100644 index 0000000..094b922 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie40.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie41.webp b/NostrServices/wwwroot/zombies/zombie41.webp new file mode 100644 index 0000000..de8659a Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie41.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie42.webp b/NostrServices/wwwroot/zombies/zombie42.webp new file mode 100644 index 0000000..21ab205 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie42.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie43.webp b/NostrServices/wwwroot/zombies/zombie43.webp new file mode 100644 index 0000000..db54b99 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie43.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie44.webp b/NostrServices/wwwroot/zombies/zombie44.webp new file mode 100644 index 0000000..875c669 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie44.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie45.webp b/NostrServices/wwwroot/zombies/zombie45.webp new file mode 100644 index 0000000..e32176d Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie45.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie46.webp b/NostrServices/wwwroot/zombies/zombie46.webp new file mode 100644 index 0000000..053bc3f Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie46.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie47.webp b/NostrServices/wwwroot/zombies/zombie47.webp new file mode 100644 index 0000000..702a729 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie47.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie48.webp b/NostrServices/wwwroot/zombies/zombie48.webp new file mode 100644 index 0000000..f6de3f8 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie48.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie49.webp b/NostrServices/wwwroot/zombies/zombie49.webp new file mode 100644 index 0000000..094fa13 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie49.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie5.webp b/NostrServices/wwwroot/zombies/zombie5.webp new file mode 100644 index 0000000..e0abe2b Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie5.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie50.webp b/NostrServices/wwwroot/zombies/zombie50.webp new file mode 100644 index 0000000..bd4dfcd Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie50.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie51.webp b/NostrServices/wwwroot/zombies/zombie51.webp new file mode 100644 index 0000000..ba81cf0 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie51.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie52.webp b/NostrServices/wwwroot/zombies/zombie52.webp new file mode 100644 index 0000000..59211ee Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie52.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie53.webp b/NostrServices/wwwroot/zombies/zombie53.webp new file mode 100644 index 0000000..75a03a3 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie53.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie54.webp b/NostrServices/wwwroot/zombies/zombie54.webp new file mode 100644 index 0000000..680df04 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie54.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie55.webp b/NostrServices/wwwroot/zombies/zombie55.webp new file mode 100644 index 0000000..ce36f6f Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie55.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie56.webp b/NostrServices/wwwroot/zombies/zombie56.webp new file mode 100644 index 0000000..6b650cb Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie56.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie57.webp b/NostrServices/wwwroot/zombies/zombie57.webp new file mode 100644 index 0000000..ceaecc4 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie57.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie6.webp b/NostrServices/wwwroot/zombies/zombie6.webp new file mode 100644 index 0000000..169c2f0 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie6.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie7.webp b/NostrServices/wwwroot/zombies/zombie7.webp new file mode 100644 index 0000000..9d193c9 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie7.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie8.webp b/NostrServices/wwwroot/zombies/zombie8.webp new file mode 100644 index 0000000..39c718d Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie8.webp differ diff --git a/NostrServices/wwwroot/zombies/zombie9.webp b/NostrServices/wwwroot/zombies/zombie9.webp new file mode 100644 index 0000000..7f49916 Binary files /dev/null and b/NostrServices/wwwroot/zombies/zombie9.webp differ