using System.Text.RegularExpressions;
public static void Main()
String response ="020700370800FF8E08180002276723000600B400000000000000000000000000000000000000000000000000000000000000005FD8723C00000000020B14";
String regex="^[A-Fa-f0-9]{28}([A-Fa-f0-9]{2})([A-Fa-f0-9]{4})([A-Fa-f0-9]{4})([A-Fa-f0-9]{2})([A-Fa-f0-9]{2})([A-Fa-f0-9]{2})([A-Fa-f0-9]{8})([A-Fa-f0-9]{8})([A-Fa-f0-9]{8})([A-Fa-f0-9]{2})([A-Fa-f0-9]{2})([A-Fa-f0-9]{2})([A-Fa-f0-9]{2})([A-Fa-f0-9]{8})([A-Fa-f0-9]{8})([A-Fa-f0-9]{8})([A-Fa-f0-9]{2})([A-Fa-f0-9]{8})([A-Fa-f0-9]{2})([A-Fa-f0-9]{14})";
Regex qariRegex = new Regex(regex);
Match responseMatch = qariRegex.Match(response);
Console.WriteLine("Hello World");