#include "Contact.h"
namespace predefined {
static constexpr auto DISCLAIMER = "Any similarity to actual persons, living or dead, that appear in this C++ program, are purely coincidental";
inline std::array PERSONS = {
Contact{ .displayName = "Bryce Adelstein Lelbach" },
Contact{ .displayName = "Matt Austern" },
Contact{ .displayName = "Aaron Ballman" },
Contact{ .displayName = "JF Bastien" },
Contact{ .displayName = "Dean Michael Berris" },
Contact{ .displayName = "Hans Boehm" },
Contact{ .displayName = "Chandler Carruth" },
Contact{ .displayName = "Stephen D. Clamage" },
Contact{ .displayName = "Ben Craig" },
Contact{ .displayName = "Guy Davidson" },
Contact{ .displayName = "Hana Dusíková" },
Contact{ .displayName = "Stefanus Du Toit" },
Contact{ .displayName = "Glen Fernandes" },
Contact{ .displayName = "Marco Foco" },
Contact{ .displayName = "J. Daniel Garcia" },
Contact{ .displayName = "Peter Gottschling" },
Contact{ .displayName = "Bernhard Manfred Gruber" },
Contact{ .displayName = "Michael Hava" },
Contact{ .displayName = "Howard Hinnant" },
Contact{ .displayName = "Tom Honermann" },
Contact{ .displayName = "Erich Keane" },
Contact{ .displayName = "Kyle Kloepper" },
Contact{ .displayName = "Dietmar Kühl" },
Contact{ .displayName = "Inbal Levi" },
Contact{ .displayName = "Lisa Lippincott" },
Contact{ .displayName = "William M. (Mike) Miller" },
Contact{ .displayName = "Clark Nelson" },
Contact{ .displayName = "Eric Niebler" },
Contact{ .displayName = "Roger Orr" },
Contact{ .displayName = "P.J. Plauger" },
Contact{ .displayName = "Antony Polukhin" },
Contact{ .displayName = "Mateusz Pusz" },
Contact{ .displayName = "Nina Dinka Ranns" },
Contact{ .displayName = "Bill Seymour" },
Contact{ .displayName = "Peter Sommerlad" },
Contact{ .displayName = "Bryan St. Amour" },
Contact{ .displayName = "Bjarne Stroustrup" },
Contact{ .displayName = "Herb Sutter" },
Contact{ .displayName = "Andrew Sutton" },
Contact{ .displayName = "Daveed Vandevoorde" },
Contact{ .displayName = "JC van Winkel" },
Contact{ .displayName = "Vassil Vassilev" },
Contact{ .displayName = "Ville Voutilainen" },
Contact{ .displayName = "Michael Wong" },
Contact{ .displayName = "Jeffrey Yasskin" },
Contact{ .displayName = "Niall Douglas" },
};
}