[
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\nindent_style = space\nend_of_line = lf\ninsert_final_newline = true\n\n[*.cs]\nindent_size = 4\ncharset = utf-8\n\n# Redundant accessor body\nresharper_redundant_accessor_body_highlighting = error\n\n# Replace with field keyword\nresharper_replace_with_field_keyword_highlighting = error\n\n# Replace with single call to Single(..)\nresharper_replace_with_single_call_to_single_highlighting = error\n\n# Replace with single call to SingleOrDefault(..)\nresharper_replace_with_single_call_to_single_or_default_highlighting = error\n\n# Replace with single call to LastOrDefault(..)\nresharper_replace_with_single_call_to_last_or_default_highlighting = error\n\n# Element is localizable\nresharper_localizable_element_highlighting = none\n\n# Replace with single call to Last(..)\nresharper_replace_with_single_call_to_last_highlighting = error\n\n# Replace with single call to First(..)\nresharper_replace_with_single_call_to_first_highlighting = error\n\n# Replace with single call to FirstOrDefault(..)\nresharper_replace_with_single_call_to_first_or_default_highlighting = error\n\n# Replace with single call to Any(..)\nresharper_replace_with_single_call_to_any_highlighting = error\n\n# Simplify negative equality expression\nresharper_negative_equality_expression_highlighting = error\n\n# Replace with single call to Count(..)\nresharper_replace_with_single_call_to_count_highlighting = error\n\n# Declare types in namespaces\ndotnet_diagnostic.CA1050.severity = none\n\n# Use Literals Where Appropriate\ndotnet_diagnostic.CA1802.severity = error\n\n# Template should be a static expression\ndotnet_diagnostic.CA2254.severity = error\n\n# Potentially misleading parameter name in lambda or local function\nresharper_all_underscore_local_parameter_name_highlighting = none\n\n# Redundant explicit collection creation in argument of 'params' parameter\nresharper_redundant_explicit_params_array_creation_highlighting = error\n\n# Do not initialize unnecessarily\ndotnet_diagnostic.CA1805.severity = error\n\n# Avoid unsealed attributes\ndotnet_diagnostic.CA1813.severity = error\n\n# Test for empty strings using string length\ndotnet_diagnostic.CA1820.severity = none\n\n# Remove empty finalizers\ndotnet_diagnostic.CA1821.severity = error\n\n# Mark members as static\ndotnet_diagnostic.CA1822.severity = error\n\n# Avoid unused private fields\ndotnet_diagnostic.CA1823.severity = error\n\n# Avoid zero-length array allocations\ndotnet_diagnostic.CA1825.severity = error\n\n# Use property instead of Linq Enumerable method\ndotnet_diagnostic.CA1826.severity = error\n\n# Do not use Count()/LongCount() when Any() can be used\ndotnet_diagnostic.CA1827.severity = error\ndotnet_diagnostic.CA1828.severity = error\n\n# Use Length/Count property instead of Enumerable.Count method\ndotnet_diagnostic.CA1829.severity = error\n\n# Prefer strongly-typed Append and Insert method overloads on StringBuilder\ndotnet_diagnostic.CA1830.severity = error\n\n# Use AsSpan instead of Range-based indexers for string when appropriate\ndotnet_diagnostic.CA1831.severity = error\n\n# Use AsSpan instead of Range-based indexers for string when appropriate\ndotnet_diagnostic.CA1831.severity = error\ndotnet_diagnostic.CA1832.severity = error\ndotnet_diagnostic.CA1833.severity = error\n\n# Use StringBuilder.Append(char) for single character strings\ndotnet_diagnostic.CA1834.severity = error\n\n# Prefer IsEmpty over Count when available\ndotnet_diagnostic.CA1836.severity = error\n\n# Prefer IsEmpty over Count when available\ndotnet_diagnostic.CA1836.severity = error\n\n# Use Environment.ProcessId instead of Process.GetCurrentProcess().Id\ndotnet_diagnostic.CA1837.severity = error\n\n# Use Environment.ProcessPath instead of Process.GetCurrentProcess().MainModule.FileName\ndotnet_diagnostic.CA1839.severity = error\n\n# Use Environment.CurrentManagedThreadId instead of Thread.CurrentThread.ManagedThreadId\ndotnet_diagnostic.CA1840.severity = error\n\n# Prefer Dictionary Contains methods\ndotnet_diagnostic.CA1841.severity = error\n\n# Do not use WhenAll with a single task\ndotnet_diagnostic.CA1842.severity = error\n\n# Do not use WhenAll/WaitAll with a single task\ndotnet_diagnostic.CA1842.severity = error\ndotnet_diagnostic.CA1843.severity = error\n\n# Use span-based 'string.Concat'\ndotnet_diagnostic.CA1845.severity = error\n\n# Prefer AsSpan over Substring\ndotnet_diagnostic.CA1846.severity = error\n\n# Use string.Contains(char) instead of string.Contains(string) with single characters\ndotnet_diagnostic.CA1847.severity = error\n\n# Prefer static HashData method over ComputeHash\ndotnet_diagnostic.CA1850.severity = error\n\n# Possible multiple enumerations of IEnumerable collection\ndotnet_diagnostic.CA1851.severity = error\n\n# Unnecessary call to Dictionary.ContainsKey(key)\ndotnet_diagnostic.CA1853.severity = error\n\n# Prefer the IDictionary.TryGetValue(TKey, out TValue) method\ndotnet_diagnostic.CA1854.severity = error\n\n# Use Span<T>.Clear() instead of Span<T>.Fill()\ndotnet_diagnostic.CA1855.severity = error\n\n# Incorrect usage of ConstantExpected attribute\ndotnet_diagnostic.CA1856.severity = error\n\n# The parameter expects a constant for optimal performance\ndotnet_diagnostic.CA1857.severity = error\n\n# Use StartsWith instead of IndexOf\ndotnet_diagnostic.CA1858.severity = error\n\n# Avoid using Enumerable.Any() extension method\ndotnet_diagnostic.CA1860.severity = error\n\n# Avoid constant arrays as arguments\ndotnet_diagnostic.CA1861.severity = error\n\n# Use the StringComparison method overloads to perform case-insensitive string comparisons\ndotnet_diagnostic.CA1862.severity = error\n\n# Prefer the IDictionary.TryAdd(TKey, TValue) method\ndotnet_diagnostic.CA1864.severity = error\n\n# Use string.Method(char) instead of string.Method(string) for string with single char\ndotnet_diagnostic.CA1865.severity = error\ndotnet_diagnostic.CA1866.severity = error\ndotnet_diagnostic.CA1867.severity = error\n\n# Unnecessary call to 'Contains' for sets\ndotnet_diagnostic.CA1868.severity = error\n\n# Cache and reuse 'JsonSerializerOptions' instances\ndotnet_diagnostic.CA1869.severity = error\n\n# Use a cached 'SearchValues' instance\ndotnet_diagnostic.CA1870.severity = error\n\n# Microsoft .NET properties\ntrim_trailing_whitespace = true\ncsharp_preferred_modifier_order = public, private, protected, internal, new, static, abstract, virtual, sealed, readonly, override, extern, unsafe, volatile, async:suggestion\nresharper_namespace_body = file_scoped\ndotnet_naming_rule.private_constants_rule.severity = warning\ndotnet_naming_rule.private_constants_rule.style = lower_camel_case_style\ndotnet_naming_rule.private_constants_rule.symbols = private_constants_symbols\ndotnet_naming_rule.private_instance_fields_rule.severity = warning\ndotnet_naming_rule.private_instance_fields_rule.style = lower_camel_case_style\ndotnet_naming_rule.private_instance_fields_rule.symbols = private_instance_fields_symbols\ndotnet_naming_rule.private_static_fields_rule.severity = warning\ndotnet_naming_rule.private_static_fields_rule.style = lower_camel_case_style\ndotnet_naming_rule.private_static_fields_rule.symbols = private_static_fields_symbols\ndotnet_naming_rule.private_static_readonly_rule.severity = warning\ndotnet_naming_rule.private_static_readonly_rule.style = lower_camel_case_style\ndotnet_naming_rule.private_static_readonly_rule.symbols = private_static_readonly_symbols\ndotnet_naming_style.lower_camel_case_style.capitalization = camel_case\ndotnet_naming_style.upper_camel_case_style.capitalization = pascal_case\ndotnet_naming_symbols.private_constants_symbols.applicable_accessibilities = private\ndotnet_naming_symbols.private_constants_symbols.applicable_kinds = field\ndotnet_naming_symbols.private_constants_symbols.required_modifiers = const\ndotnet_naming_symbols.private_instance_fields_symbols.applicable_accessibilities = private\ndotnet_naming_symbols.private_instance_fields_symbols.applicable_kinds = field\ndotnet_naming_symbols.private_static_fields_symbols.applicable_accessibilities = private\ndotnet_naming_symbols.private_static_fields_symbols.applicable_kinds = field\ndotnet_naming_symbols.private_static_fields_symbols.required_modifiers = static\ndotnet_naming_symbols.private_static_readonly_symbols.applicable_accessibilities = private\ndotnet_naming_symbols.private_static_readonly_symbols.applicable_kinds = field\ndotnet_naming_symbols.private_static_readonly_symbols.required_modifiers = static, readonly\ndotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary:none\ndotnet_style_parentheses_in_other_binary_operators = always_for_clarity:none\ndotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary:none\n\n# ReSharper properties\nresharper_object_creation_when_type_not_evident = target_typed\n\n# ReSharper inspection severities\nresharper_arrange_object_creation_when_type_evident_highlighting = error\nresharper_arrange_object_creation_when_type_not_evident_highlighting = error\nresharper_arrange_redundant_parentheses_highlighting = error\nresharper_arrange_static_member_qualifier_highlighting = error\nresharper_arrange_this_qualifier_highlighting = error\nresharper_arrange_type_member_modifiers_highlighting = none\nresharper_built_in_type_reference_style_for_member_access_highlighting = hint\nresharper_built_in_type_reference_style_highlighting = hint\nresharper_check_namespace_highlighting = none\nresharper_convert_to_using_declaration_highlighting = error\nresharper_field_can_be_made_read_only_local_highlighting = none\nresharper_merge_into_logical_pattern_highlighting = warning\nresharper_merge_into_pattern_highlighting = error\nresharper_method_has_async_overload_highlighting = warning\n# because stop rider giving errors before source generators have run\nresharper_partial_type_with_single_part_highlighting = warning\nresharper_redundant_base_qualifier_highlighting = warning\nresharper_redundant_cast_highlighting = error\nresharper_redundant_empty_object_creation_argument_list_highlighting = error\nresharper_redundant_empty_object_or_collection_initializer_highlighting = error\nresharper_redundant_name_qualifier_highlighting = error\nresharper_redundant_suppress_nullable_warning_expression_highlighting = error\nresharper_redundant_using_directive_highlighting = error\nresharper_redundant_verbatim_string_prefix_highlighting = error\nresharper_redundant_lambda_signature_parentheses_highlighting = error\nresharper_replace_substring_with_range_indexer_highlighting = warning\nresharper_suggest_var_or_type_built_in_types_highlighting = error\nresharper_suggest_var_or_type_elsewhere_highlighting = error\nresharper_suggest_var_or_type_simple_types_highlighting = error\nresharper_unnecessary_whitespace_highlighting = error\nresharper_use_await_using_highlighting = warning\nresharper_use_deconstruction_highlighting = warning\n\n# Sort using and Import directives with System.* appearing first\ndotnet_sort_system_directives_first = true\n\n# Avoid \"this.\" and \"Me.\" if not necessary\ndotnet_style_qualification_for_field = false:error\ndotnet_style_qualification_for_property = false:error\ndotnet_style_qualification_for_method = false:error\ndotnet_style_qualification_for_event = false:error\n\n# Use language keywords instead of framework type names for type references\ndotnet_style_predefined_type_for_locals_parameters_members = true:error\ndotnet_style_predefined_type_for_member_access = true:error\n\n# Suggest more modern language features when available\ndotnet_style_object_initializer = true:error\ndotnet_style_collection_initializer = true:error\ndotnet_style_coalesce_expression = false:error\ndotnet_style_null_propagation = true:error\ndotnet_style_explicit_tuple_names = true:error\n\n# Use collection expression syntax\nresharper_use_collection_expression_highlighting = error\n\n# Prefer \"var\" everywhere\ncsharp_style_var_for_built_in_types = true:error\ncsharp_style_var_when_type_is_apparent = true:error\ncsharp_style_var_elsewhere = true:error\n\n# Prefer method-like constructs to have a block body\ncsharp_style_expression_bodied_methods = true:error\ncsharp_style_expression_bodied_local_functions = true:error\ncsharp_style_expression_bodied_constructors = true:error\ncsharp_style_expression_bodied_operators = true:error\nresharper_place_expr_method_on_single_line = false\n\n# Prefer property-like constructs to have an expression-body\ncsharp_style_expression_bodied_properties = true:error\ncsharp_style_expression_bodied_indexers = true:error\ncsharp_style_expression_bodied_accessors = true:error\n\n# Suggest more modern language features when available\ncsharp_style_pattern_matching_over_is_with_cast_check = true:error\ncsharp_style_pattern_matching_over_as_with_null_check = true:error\ncsharp_style_inlined_variable_declaration = true:suggestion\ncsharp_style_throw_expression = true:suggestion\ncsharp_style_conditional_delegate_call = true:suggestion\n\n# Newline settings\n#csharp_new_line_before_open_brace = all:error\nresharper_max_array_initializer_elements_on_line = 1\ncsharp_new_line_before_else = true\ncsharp_new_line_before_catch = true\ncsharp_new_line_before_finally = true\ncsharp_new_line_before_members_in_object_initializers = true\ncsharp_new_line_before_members_in_anonymous_types = true\nresharper_wrap_before_first_type_parameter_constraint = true\nresharper_wrap_extends_list_style = chop_always\nresharper_wrap_after_dot_in_method_calls = false\nresharper_wrap_before_binary_pattern_op = false\nresharper_wrap_object_and_collection_initializer_style = chop_always\nresharper_place_simple_initializer_on_single_line = false\n\n# space\nresharper_space_around_lambda_arrow = true\n\ndotnet_style_require_accessibility_modifiers = never:error\nresharper_place_type_constraints_on_same_line = false\nresharper_blank_lines_inside_namespace = 0\nresharper_blank_lines_after_file_scoped_namespace_directive = 1\nresharper_blank_lines_inside_type = 0\n\nresharper_place_attribute_on_same_line = false\n\n#braces https://www.jetbrains.com/help/resharper/EditorConfig_CSHARP_CSharpCodeStylePageImplSchema.html#Braces\nresharper_braces_for_ifelse = required\nresharper_braces_for_foreach = required\nresharper_braces_for_while = required\nresharper_braces_for_dowhile = required\nresharper_braces_for_lock = required\nresharper_braces_for_fixed = required\nresharper_braces_for_for = required\n\nresharper_return_value_of_pure_method_is_not_used_highlighting = error\n\nresharper_member_hides_interface_member_with_default_implementation_highlighting = error\n\nresharper_misleading_body_like_statement_highlighting = error\n\nresharper_redundant_record_class_keyword_highlighting = error\n\nresharper_redundant_extends_list_entry_highlighting = error\n\nresharper_redundant_type_arguments_inside_nameof_highlighting = error\n\n# Xml files\n[*.{xml,config,nuspec,resx,vsixmanifest,csproj,targets,props,fsproj}]\nindent_size = 2\n# https://www.jetbrains.com/help/resharper/EditorConfig_XML_XmlCodeStylePageSchema.html#resharper_xml_blank_line_after_pi\nresharper_blank_line_after_pi = false\nresharper_space_before_self_closing = true\nij_xml_space_inside_empty_tag = true\n\n[*.json]\nindent_size = 2\n\n# Verify settings\n[*.{received,verified}.{txt,xml,json,md,sql,csv,html,htm,nuspec,rels}]\ncharset = utf-8-bom\nend_of_line = lf\nindent_size = unset\nindent_style = unset\ninsert_final_newline = false\ntab_width = unset\ntrim_trailing_whitespace = false"
  },
  {
    "path": ".gitattributes",
    "content": "* text=auto eol=lf\n*.png binary\n*.snk binary\n\n\n*.verified.txt text eol=lf working-tree-encoding=UTF-8\n*.verified.xml text eol=lf working-tree-encoding=UTF-8\n*.verified.json text eol=lf working-tree-encoding=UTF-8\n\n.editorconfig text eol=lf working-tree-encoding=UTF-8\n*.sln.DotSettings text eol=lf working-tree-encoding=UTF-8\n*.slnx.DotSettings text eol=lf working-tree-encoding=UTF-8"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "github: SimonCropp\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug fix\nabout: Create a bug fix to help us improve\n---\n\nNote: New issues raised, where it is clear the submitter has not read the issue template, are likely to be closed with \"please read the issue template\". Please don't take offense at this. It is simply a time management decision. If someone raises an issue, and can't be bothered to spend the time to read the issue template, then the project maintainers should not be expected to spend the time to read the submitted issue. Often too much time is spent going back and forth in issue comments asking for information that is outlined in the issue template.\n\n\n#### Preamble\n\nWhere relevant, ensure you are using the current stable versions on your development stack. For example:\n\n * Visual Studio\n * [.NET SDK or .NET Core SDK](https://www.microsoft.com/net/download)\n * Any related NuGet packages\n\nAny code or stack traces must be properly formatted with [GitHub markdown](https://guides.github.com/features/mastering-markdown/).\n\n\n#### Describe the bug\n\nA clear and concise description of what the bug is. Include any relevant version information.\n\nA clear and concise description of what you expected to happen.\n\nAdd any other context about the problem here.\n\n\n#### Minimal Repro\n\nEnsure you have replicated the bug in a minimal solution with the fewest moving parts. Often this will help point to the true cause of the problem. Upload this repro as part of the issue, preferably a public GitHub repository or a downloadable zip. The repro will allow the maintainers of this project to smoke test the any fix.\n\n#### Submit a PR that fixes the bug\n\nSubmit a [Pull Request (PR)](https://help.github.com/articles/about-pull-requests/) that fixes the bug. Include in this PR a test that verifies the fix. If you were not able to fix the bug, a PR that illustrates your partial progress will suffice.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "content": "blank_issues_enabled: false"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: How to raise feature requests\n---\n\n\nNote: New issues raised, where it is clear the submitter has not read the issue template, are likely to be closed with \"please read the issue template\". Please don't take offense at this. It is simply a time management decision. If someone raises an issue, and can't be bothered to spend the time to read the issue template, then the project maintainers should not be expected to spend the time to read the submitted issue. Often too much time is spent going back and forth in issue comments asking for information that is outlined in the issue template.\n\nIf you are certain the feature will be accepted, it is better to raise a [Pull Request (PR)](https://help.github.com/articles/about-pull-requests/).\n\nIf you are uncertain if the feature will be accepted, outline the proposal below to confirm it is viable, prior to raising a PR that implements the feature.\n\nNote that even if the feature is a good idea and viable, it may not be accepted since the ongoing effort in maintaining the feature may outweigh the benefit it delivers.\n\n\n#### Is the feature request related to a problem\n\nA clear and concise description of what the problem is.\n\n\n#### Describe the solution\n\nA clear and concise proposal of how you intend to implement the feature.\n\n\n#### Describe alternatives considered\n\nA clear and concise description of any alternative solutions or features you've considered.\n\n\n#### Additional context\n\nAdd any other context about the feature request here.\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n- package-ecosystem: nuget\n  directory: \"/src\"\n  schedule:\n    interval: daily\n  open-pull-requests-limit: 10\n"
  },
  {
    "path": ".github/stale.yml",
    "content": "# Number of days of inactivity before an issue becomes stale\ndaysUntilStale: 7\n# Number of days of inactivity before a stale issue is closed\ndaysUntilClose: 7\n# Set to true to ignore issues in a milestone (defaults to false)\nexemptMilestones: true\n# Comment to post when marking an issue as stale. Set to `false` to disable\nmarkComment: >\n  This issue has been automatically marked as stale because it has not had\n  recent activity. It will be closed if no further activity occurs. Thank you\n  for your contributions.\n# Comment to post when closing a stale issue. Set to `false` to disable\ncloseComment: false\n# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':\npulls:\n  daysUntilStale: 30\nexemptLabels:\n  - Question\n  - Bug\n  - Feature\n  - Improvement"
  },
  {
    "path": ".github/workflows/merge-dependabot.yml",
    "content": "name: merge-dependabot\non:\n  pull_request:\njobs:\n  automerge:\n    runs-on: ubuntu-latest\n    if: github.actor == 'dependabot[bot]'\n    steps:\n      - name: Dependabot Auto Merge\n        uses: ahmadnassri/action-dependabot-auto-merge@v2.6.6\n        with:\n          target: minor\n          github-token: ${{ secrets.dependabot }}\n          command: squash and merge"
  },
  {
    "path": ".github/workflows/milestone-release.yml",
    "content": "name: milestone-release\n\non:\n  milestone:\n    types: [created, edited, deleted, closed, opened]\n  issues:\n    types: [opened, edited, closed, reopened, deleted, milestoned, demilestoned]\n  pull_request:\n    types: [opened, edited, closed, reopened, milestoned, demilestoned]\n  push:\n    tags:\n      - '*'\n  workflow_dispatch:\n    inputs:\n      milestone:\n        description: 'Milestone title to rebuild (leave empty to rebuild all)'\n        required: false\n        type: string\n\npermissions:\n  contents: write\n\njobs:\n  sync-release:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Sync Release with Milestone\n        uses: actions/github-script@v7\n        with:\n          script: |\n            const { owner, repo } = context.repo;\n\n            async function syncMilestone(milestone) {\n              const milestoneTitle = milestone.title;\n              const milestoneNumber = milestone.number;\n\n              // Find existing release by tag_name (includes drafts)\n              let release = null;\n              for await (const response of github.paginate.iterator(\n                github.rest.repos.listReleases,\n                { owner, repo, per_page: 100 }\n              )) {\n                release = response.data.find(r => r.tag_name === milestoneTitle);\n                if (release) break;\n              }\n\n              // Fetch all issues and PRs in milestone\n              const items = [];\n              for await (const response of github.paginate.iterator(\n                github.rest.issues.listForRepo,\n                { owner, repo, milestone: milestoneNumber, state: 'all', per_page: 100 }\n              )) {\n                items.push(...response.data);\n              }\n\n              // Sort by number and generate body\n              items.sort((a, b) => a.number - b.number);\n              const body = items.map(item => {\n                const checkbox = item.state === 'closed' ? '[x]' : '[ ]';\n                return `- ${checkbox} [#${item.number}](${item.html_url}) ${item.title}`;\n              }).join('\\n');\n\n              // Determine if release should be draft or published\n              const isDraft = milestone.state === 'open';\n\n              if (release) {\n                await github.rest.repos.updateRelease({\n                  owner, repo,\n                  release_id: release.id,\n                  name: milestoneTitle,\n                  body: body || 'No issues in this milestone yet.',\n                  draft: isDraft\n                });\n                console.log(`Updated release: ${milestoneTitle}`);\n              } else {\n                // Check if tag exists before creating release\n                let tagExists = false;\n                try {\n                  await github.rest.git.getRef({\n                    owner, repo,\n                    ref: `tags/${milestoneTitle}`\n                  });\n                  tagExists = true;\n                } catch (error) {\n                  if (error.status !== 404) throw error;\n                }\n\n                if (tagExists) {\n                  await github.rest.repos.createRelease({\n                    owner, repo,\n                    tag_name: milestoneTitle,\n                    name: milestoneTitle,\n                    body: body || 'No issues in this milestone yet.',\n                    draft: isDraft\n                  });\n                  console.log(`Created release: ${milestoneTitle}`);\n                } else {\n                  console.log(`Skipping release creation: tag '${milestoneTitle}' does not exist`);\n                }\n              }\n            }\n\n            // Handle tag push - find matching milestone and sync\n            if (context.eventName === 'push' && context.ref.startsWith('refs/tags/')) {\n              const tagName = context.ref.replace('refs/tags/', '');\n              const milestones = [];\n              for await (const response of github.paginate.iterator(\n                github.rest.issues.listMilestones,\n                { owner, repo, state: 'all', per_page: 100 }\n              )) {\n                milestones.push(...response.data);\n              }\n              const milestone = milestones.find(ms => ms.title === tagName);\n              if (milestone) {\n                await syncMilestone(milestone);\n              } else {\n                console.log(`No milestone found matching tag '${tagName}'`);\n              }\n              return;\n            }\n\n            // Handle manual trigger - rebuild all or specific milestone\n            if (context.eventName === 'workflow_dispatch') {\n              const inputMilestone = context.payload.inputs?.milestone;\n              const milestones = [];\n              for await (const response of github.paginate.iterator(\n                github.rest.issues.listMilestones,\n                { owner, repo, state: 'all', per_page: 100 }\n              )) {\n                milestones.push(...response.data);\n              }\n\n              for (const ms of milestones) {\n                if (!inputMilestone || ms.title === inputMilestone) {\n                  await syncMilestone(ms);\n                }\n              }\n              return;\n            }\n\n            // Get milestone from event\n            let milestone = context.payload.milestone;\n            if (!milestone && context.payload.issue?.milestone) {\n              milestone = context.payload.issue.milestone;\n            }\n            if (!milestone && context.payload.pull_request?.milestone) {\n              milestone = context.payload.pull_request.milestone;\n            }\n            if (!milestone) {\n              console.log('No milestone associated with this event');\n              return;\n            }\n\n            const eventAction = context.payload.action;\n\n            // Handle milestone deleted\n            if (context.eventName === 'milestone' && eventAction === 'deleted') {\n              const milestoneTitle = milestone.title;\n              let release = null;\n              for await (const response of github.paginate.iterator(\n                github.rest.repos.listReleases,\n                { owner, repo, per_page: 100 }\n              )) {\n                release = response.data.find(r => r.tag_name === milestoneTitle);\n                if (release) break;\n              }\n              if (release) {\n                await github.rest.repos.deleteRelease({\n                  owner, repo, release_id: release.id\n                });\n                console.log(`Deleted release for milestone: ${milestoneTitle}`);\n              }\n              return;\n            }\n\n            await syncMilestone(milestone);\n"
  },
  {
    "path": ".github/workflows/on-push-do-doco.yml",
    "content": "name: on-push-do-doco\non:\n  push:\njobs:\n  release:\n    runs-on: windows-latest\n    steps:\n    - uses: actions/checkout@v4\n    - name: Run MarkdownSnippets\n      run: |\n        dotnet tool install --global MarkdownSnippets.Tool\n        mdsnippets ${GITHUB_WORKSPACE}\n      shell: bash\n    - name: Push changes\n      run: |\n        git config --local user.email \"action@github.com\"\n        git config --local user.name \"GitHub Action\"\n        git commit -m \"Doco changes\" -a || echo \"nothing to commit\"\n        remote=\"https://${GITHUB_ACTOR}:${{secrets.GITHUB_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git\"\n        branch=\"${GITHUB_REF:11}\"\n        git push \"${remote}\" ${branch} || echo \"nothing to push\"\n      shell: bash"
  },
  {
    "path": ".gitignore",
    "content": "*.suo\n*.user\nbin/\nobj/\n.vs/\n*.DotSettings.user\n.idea/\n*.received.*\nnugets/"
  },
  {
    "path": "RedGateLicense.txt",
    "content": "New BSD License (BSD)\nCopyright (c) 2008, Red Gate Software Ltd\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* Neither the name of Red Gate Software Ltd nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
  },
  {
    "path": "code_of_conduct.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, sex characteristics, gender identity and expression,\nlevel of experience, education, socio-economic status, nationality, personal\nappearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or\n advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic\n address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community. Examples of\nrepresenting a project or community include using an official project e-mail\naddress, posting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event. Representation of a project may be\nfurther defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by contacting the project team at simon.cropp@gmail.com. All\ncomplaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,\navailable at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see\nhttps://www.contributor-covenant.org/faq\n"
  },
  {
    "path": "license.txt",
    "content": "BSD 3-Clause License\n\nCopyright (c) 2018, Simon Cropp\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n  list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n  this list of conditions and the following disclaimer in the documentation\n  and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n  contributors may be used to endorse or promote products derived from\n  this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "readme.md",
    "content": "# <img src=\"/src/icon.png\" height=\"30px\"> WaffleGenerator\n\n[![Build status](https://img.shields.io/appveyor/build/SimonCropp/WaffleGenerator)](https://ci.appveyor.com/project/SimonCropp/WaffleGenerator)\n[![NuGet Status](https://img.shields.io/nuget/v/WaffleGenerator.svg?label=WaffleGenerator&cacheSeconds=86400)](https://www.nuget.org/packages/WaffleGenerator/)\n[![NuGet Status](https://img.shields.io/nuget/v/WaffleGenerator.Bogus.svg?label=WaffleGenerator.Bogus&cacheSeconds=86400)](https://www.nuget.org/packages/WaffleGenerator.Bogus/)\n\nProduces text which, on first glance, looks like real, ponderous, prose; replete with clichés.\n\n**See [Milestones](../../milestones?state=closed) for release notes.**\n\nExample content:\n\n```\nThe Aesthetic Of Economico-Social Disposition\n\n\"In this regard, the underlying surrealism of the take home message should not \ndivert attention from The Aesthetic Of Economico-Social Disposition\"\n(Humphrey Yokomoto in The Journal of the Total Entative Item (20044U))\n\nOn any rational basis, a particular factor, such as the functional baseline, the \nanalogy of object, the strategic requirements or the principal overriding programming \nprovides an interesting insight into the complementary functional derivation. \nThis trend may dissipate due to the mensurable proficiency.\n```\n\nThis output can be used in similar way to [Lorem ipsum](https://en.wikipedia.org/wiki/Lorem_ipsum) content, in that it is useful for producing text for build software and producing design mockups.\n\nBased on the awesome work by [Andrew Clarke](https://www.red-gate.com/simple-talk/author/andrew-clarke/) outlined in [The Waffle Generator](https://www.red-gate.com/simple-talk/dotnet/net-tools/the-waffle-generator/).\n\nCode based on [SDGGenerators - Red Gate SQL Data Generator Community Generators](https://archive.codeplex.com/?p=sdggenerators).\n\n\n## Blazor App\n\nThe [Blazing Waffles](http://wafflegen.azurewebsites.net/) app allows the generation of waffle text online.\n\n * Source: https://github.com/gbiellem/BlazingWaffles\n\n\n## Main Package - WaffleGenerator\n\nhttps://nuget.org/packages/WaffleGenerator/\n\n\n### Usage\n\nThe `WaffleEngine` can be used to produce Html, text or Markdown:\n\n\n#### Html\n\n<!-- snippet: htmlUsage -->\n<a id='snippet-htmlUsage'></a>\n```cs\nvar text = WaffleEngine.Html(\n    paragraphs: 2,\n    includeHeading: true,\n    includeHeadAndBody: true);\nDebug.WriteLine(text);\n```\n<sup><a href='/src/Tests/WaffleEngineTests.cs#L33-L41' title='Snippet source file'>snippet source</a> | <a href='#snippet-htmlUsage' title='Start of snippet'>anchor</a></sup>\n<!-- endSnippet -->\n\n\n#### Text\n\n<!-- snippet: textUsage -->\n<a id='snippet-textUsage'></a>\n```cs\nvar text = WaffleEngine.Text(\n    paragraphs: 1,\n    includeHeading: true);\nDebug.WriteLine(text);\n```\n<sup><a href='/src/Tests/WaffleEngineTests.cs#L7-L14' title='Snippet source file'>snippet source</a> | <a href='#snippet-textUsage' title='Start of snippet'>anchor</a></sup>\n<!-- endSnippet -->\n\n\n#### Markdown\n\n<!-- snippet: markdownUsage -->\n<a id='snippet-markdownUsage'></a>\n```cs\nvar markdown = WaffleEngine.Markdown(\n    paragraphs: 1,\n    includeHeading: true);\nDebug.WriteLine(markdown);\n```\n<sup><a href='/src/Tests/WaffleEngineTests.cs#L20-L27' title='Snippet source file'>snippet source</a> | <a href='#snippet-markdownUsage' title='Start of snippet'>anchor</a></sup>\n<!-- endSnippet -->\n\n\n## WaffleGenerator.Bogus\n\nExtends [Bogus](https://github.com/bchavez/Bogus) to use WaffleGenerator.\n\nhttps://nuget.org/packages/WaffleGenerator.Bogus/\n\n\n### Usage\n\nThe entry extension method is `WaffleHtml()` or `WaffleText()` or `WaffleMarkdown()`:\n\n<!-- snippet: BogusUsage -->\n<a id='snippet-BogusUsage'></a>\n```cs\nvar faker = new Faker<Target>()\n    .RuleFor(\n        property: u => u.Title,\n        setter: (f, u) => f.WaffleTitle())\n    .RuleFor(\n        property: u => u.Property1,\n        setter: (f, u) => f.WaffleHtml())\n    .RuleFor(\n        property: u => u.Property2,\n        setter: (f, u) => f.WaffleHtml(\n            paragraphs: 4,\n            includeHeading: true))\n    .RuleFor(\n        property: u => u.Property3,\n        setter: (f, u) => f.WaffleText())\n    .RuleFor(\n        property: u => u.Property4,\n        setter: (f, u) => f.WaffleText(\n            paragraphs: 4,\n            includeHeading: false));\n\nvar target = faker.Generate();\nDebug.WriteLine(target.Title);\nDebug.WriteLine(target.Property1);\nDebug.WriteLine(target.Property2);\nDebug.WriteLine(target.Property3);\nDebug.WriteLine(target.Property4);\n```\n<sup><a href='/src/Tests/FakerUsage.cs#L12-L42' title='Snippet source file'>snippet source</a> | <a href='#snippet-BogusUsage' title='Start of snippet'>anchor</a></sup>\n<!-- endSnippet -->\n\n\n## Icon\n\n[Waffle](https://thenounproject.com/term/waffle/836862/) designed by Made by Made from [The Noun Project](https://thenounproject.com/)\n"
  },
  {
    "path": "src/Directory.Build.props",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project>\n  <PropertyGroup>\n    <NoWarn>CS1591;NU1608;NU1109</NoWarn>\n    <Version>4.3.0</Version>\n    <AssemblyVersion>1.0.0</AssemblyVersion>\n    <LangVersion>preview</LangVersion>\n    <PackageTags>WaffleGenerator, Bogus</PackageTags>\n    <Nullable>enable</Nullable>\n    <ImplicitUsings>enable</ImplicitUsings>\n    <ResolveAssemblyReferencesSilent>true</ResolveAssemblyReferencesSilent>\n    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>\n    <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>\n    <SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>\n  </PropertyGroup>\n</Project>"
  },
  {
    "path": "src/Directory.Packages.props",
    "content": "<Project>\n  <PropertyGroup>\n    <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>\n    <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>\n  </PropertyGroup>\n  <ItemGroup>\n    <PackageVersion Include=\"Bogus\" Version=\"35.6.5\" />\n    <PackageVersion Include=\"MarkdownSnippets.MsBuild\" Version=\"28.2.0\" />\n    <PackageVersion Include=\"Microsoft.NET.Test.Sdk\" Version=\"18.5.1\" />\n    <PackageVersion Include=\"NUnit\" Version=\"4.6.0\" />\n    <PackageVersion Include=\"NUnit3TestAdapter\" Version=\"6.2.0\" />\n    <PackageVersion Include=\"Polyfill\" Version=\"10.5.1\" />\n    <PackageVersion Include=\"ProjectDefaults\" Version=\"1.0.174\" />\n    <PackageVersion Include=\"Verify.DiffPlex\" Version=\"3.1.2\" />\n    <PackageVersion Include=\"Verify.NUnit\" Version=\"31.16.3\" />\n    <PackageVersion Include=\"Microsoft.Sbom.Targets\" Version=\"4.1.5\" />\n    <PackageVersion Include=\"Argon\" Version=\"0.33.5\" />\n    <PackageVersion Include=\"DiffEngine\" Version=\"19.2.0\" />\n    <PackageVersion Include=\"EmptyFiles\" Version=\"8.18.1\" />\n    <PackageVersion Include=\"SimpleInfoName\" Version=\"3.2.0\" />\n    <PackageVersion Include=\"Verify\" Version=\"31.16.3\" />\n  </ItemGroup>\n</Project>\n"
  },
  {
    "path": "src/Shared.sln.DotSettings",
    "content": "﻿<wpf:ResourceDictionary xml:space=\"preserve\" xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\" xmlns:s=\"clr-namespace:System;assembly=mscorlib\" xmlns:ss=\"urn:shemas-jetbrains-com:settings-storage-xaml\" xmlns:wpf=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\">\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=InconsistentNaming/@EntryIndexedValue\">DO_NOT_SHOW</s:String>\n\t<s:Boolean x:Key=\"/Default/CodeStyle/Naming/CSharpNaming/ApplyAutoDetectedRules/@EntryValue\">False</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/Environment/Hierarchy/Build/SolutionBuilderNext/LogToFile/@EntryValue\">False</s:Boolean>\n\t<s:String x:Key=\"/Default/Environment/Hierarchy/Build/SolutionBuilderNext/OutputVerbosityLevel/@EntryValue\">Quiet</s:String>\n\t<s:Boolean x:Key=\"/Default/CodeEditing/ContextActionTable/DisabledContextActions/=JetBrains_002EReSharper_002EIntentions_002ECSharp_002EContextActions_002EUseConfigureAwaitFalseAction/@EntryIndexedValue\">True</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/CodeInspection/ExcludedFiles/FileMasksToSkip/=_002AMigrations_002A/@EntryIndexedValue\">True</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/CodeInspection/ExcludedFiles/FileMasksToSkip/=_002A_002EDesigner_002Ecs/@EntryIndexedValue\">True</s:Boolean>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=AllUnderscoreLocalParameterName/@EntryIndexedValue\">DO_NOT_SHOW</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ArrangeAccessorOwnerBody/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ArrangeConstructorOrDestructorBody/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ArrangeLocalFunctionBody/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ArrangeMethodOrOperatorBody/@EntryIndexedValue\">WARNING</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ArrangeNamespaceBody/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=CanSimplifyDictionaryTryGetValueWithGetValueOrDefault/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ConditionIsAlwaysTrueOrFalse/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ConvertToCompoundAssignment/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ConvertToNullCoalescingCompoundAssignment/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ConvertToPrimaryConstructor/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ExpressionIsAlwaysNull/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=LocalFunctionCanBeMadeStatic/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MemberCanBeMadeStatic_002EGlobal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MemberCanBeMadeStatic_002ELocal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MergeAndPattern/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MergeCastWithTypeCheck/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MergeConditionalExpression/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MergeIntoLogicalPattern/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MergeIntoNegatedPattern/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MergeIntoPattern/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MergeNestedPropertyPatterns/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MergeSequentialChecks/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=NotAccessedField_002ELocal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=NotAccessedPositionalProperty_002ELocal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantPatternParentheses/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=TailRecursiveCall/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=PatternIsAlwaysTrueOrFalse/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantAssignment/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantBoolCompare/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantStringInterpolation/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RawStringCanBeSimplified/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantTypeDeclarationBody/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantUsingDirective_002EGlobal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ReplaceAsyncWithTaskReturn/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=SeparateLocalFunctionsWithJumpStatement/@EntryIndexedValue\">DO_NOT_SHOW</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=SimplifyConditionalTernaryExpression/@EntryIndexedValue\">DO_NOT_SHOW</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=StringLiteralAsInterpolationArgument/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=TryStatementsCanBeMerged/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedParameter_002EGlobal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedParameter_002ELocal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=TabsAndSpacesMismatch/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=TabsAreDisallowed/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UseCollectionExpression/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UseIndexFromEndExpression/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UseRawString/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UseSwitchCasePatternVariable/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UseSymbolAlias/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UseUtf8StringLiteral/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Browsers/Browsers/@EntryValue\">C90+,E79+,S14+</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ConditionalAccessQualifierIsNonNullableAccordingToAPIContract/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ConstantConditionalAccessQualifier/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=EmptyConstructor/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=EmptyDestructor/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=EmptyNamespace/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=EntityNameCapturedOnly_002EGlobal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=EntityNameCapturedOnly_002ELocal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=FormatStringProblem/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=InlineOutVariableDeclaration/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=IsExpressionAlwaysTrue/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MethodHasAsyncOverloadWithCancellation/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=MethodSupportsCancellation/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=NotAccessedVariable/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=NotAccessedVariable_002ECompiler/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=NullCoalescingConditionIsAlwaysNotNullAccordingToAPIContract/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=PartialMethodWithSinglePart/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=PartialTypeWithSinglePart/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=PatternAlwaysMatches/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=PatternNeverMatches/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=PossibleMultipleEnumeration/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=PrivateFieldCanBeConvertedToLocalVariable/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantAbstractModifier/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantAttributeParentheses/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantAttributeSuffix/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantBaseConstructorCall/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantBaseQualifier/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantCaseLabel/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantCast/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantCatchClause/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantDefaultMemberInitializer/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantEmptyObjectOrCollectionInitializer/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantEnumerableCastCall/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantExplicitArrayCreation/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantExtendsListEntry/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantIfElseBlock/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantIsBeforeRelationalPattern/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantNotNullConstraint/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantNullableFlowAttribute/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantNullableTypeMark/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantOverload_002EGlobal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantOverload_002ELocal/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantOverriddenMember/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantRecordClassKeyword/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantStringFormatCall/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantStringToCharArrayCall/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantToStringCall/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantToStringCallForValueType/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantTypeArgumentsOfMethod/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantTypeCheckInPattern/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantUnsafeContext/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantUsingDirective/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantVerbatimPrefix/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantVerbatimStringPrefix/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=SealedMemberInSealedClass/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=ThreadStaticFieldHasInitializer/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UnnecessaryWhitespace/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedLocalFunction_002ECompiler/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedLocalFunction/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedLocalFunctionReturnValue/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedTupleComponentInReturnValue/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedTypeParameter/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedVariable/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UnusedVariable_002ECompiler/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UseCancellationTokenForIAsyncEnumerable/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UseConfigureAwaitFalse/@EntryIndexedValue\">DO_NOT_SHOW</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/GeneratedCode/GeneratedFileMasks/=_002A_002Ereceived_002E_002A/@EntryIndexedValue\">*.received.*</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/GeneratedCode/GeneratedFileMasks/=_002A_002Everified_002E_002A/@EntryIndexedValue\">*.verified.*</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantSuppressNullableWarningExpression/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=UseObjectOrCollectionInitializer/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=VariableHidesOuterVariable/@EntryIndexedValue\">DO_NOT_SHOW</s:String>\n\t<s:String x:Key=\"/Default/CodeInspection/JsInspections/LanguageLevel/@EntryValue\">ECMAScript 2016</s:String>\n\t<s:String x:Key=\"/Default/CodeStyle/CodeCleanup/Profiles/=c_0023_0020Cleanup/@EntryIndexedValue\">&lt;?xml version=\"1.0\" encoding=\"utf-16\"?&gt;&lt;Profile name=\"c# Cleanup\"&gt;&lt;AspOptimizeRegisterDirectives&gt;True&lt;/AspOptimizeRegisterDirectives&gt;&lt;CSCodeStyleAttributes ArrangeVarStyle=\"True\" ArrangeTypeAccessModifier=\"True\" ArrangeTypeMemberAccessModifier=\"True\" SortModifiers=\"True\" RemoveRedundantParentheses=\"True\" AddMissingParentheses=\"True\" ArrangeBraces=\"True\" ArrangeAttributes=\"True\" ArrangeCodeBodyStyle=\"True\" ArrangeTrailingCommas=\"True\" ArrangeObjectCreation=\"True\" ArrangeDefaultValue=\"True\" ArrangeNamespaces=\"True\" /&gt;&lt;CssAlphabetizeProperties&gt;True&lt;/CssAlphabetizeProperties&gt;&lt;JSStringLiteralQuotesDescriptor&gt;True&lt;/JSStringLiteralQuotesDescriptor&gt;&lt;CorrectVariableKindsDescriptor&gt;True&lt;/CorrectVariableKindsDescriptor&gt;&lt;VariablesToInnerScopesDescriptor&gt;True&lt;/VariablesToInnerScopesDescriptor&gt;&lt;StringToTemplatesDescriptor&gt;True&lt;/StringToTemplatesDescriptor&gt;&lt;JsInsertSemicolon&gt;True&lt;/JsInsertSemicolon&gt;&lt;RemoveRedundantQualifiersTs&gt;True&lt;/RemoveRedundantQualifiersTs&gt;&lt;OptimizeImportsTs&gt;True&lt;/OptimizeImportsTs&gt;&lt;OptimizeReferenceCommentsTs&gt;True&lt;/OptimizeReferenceCommentsTs&gt;&lt;PublicModifierStyleTs&gt;True&lt;/PublicModifierStyleTs&gt;&lt;ExplicitAnyTs&gt;True&lt;/ExplicitAnyTs&gt;&lt;TypeAnnotationStyleTs&gt;True&lt;/TypeAnnotationStyleTs&gt;&lt;RelativePathStyleTs&gt;True&lt;/RelativePathStyleTs&gt;&lt;AsInsteadOfCastTs&gt;True&lt;/AsInsteadOfCastTs&gt;&lt;RemoveCodeRedundancies&gt;True&lt;/RemoveCodeRedundancies&gt;&lt;CSUseAutoProperty&gt;True&lt;/CSUseAutoProperty&gt;&lt;CSMakeFieldReadonly&gt;True&lt;/CSMakeFieldReadonly&gt;&lt;CSMakeAutoPropertyGetOnly&gt;True&lt;/CSMakeAutoPropertyGetOnly&gt;&lt;CSArrangeQualifiers&gt;True&lt;/CSArrangeQualifiers&gt;&lt;CSFixBuiltinTypeReferences&gt;True&lt;/CSFixBuiltinTypeReferences&gt;&lt;CssReformatCode&gt;True&lt;/CssReformatCode&gt;&lt;JsReformatCode&gt;True&lt;/JsReformatCode&gt;&lt;JsFormatDocComments&gt;True&lt;/JsFormatDocComments&gt;&lt;CSOptimizeUsings&gt;&lt;OptimizeUsings&gt;True&lt;/OptimizeUsings&gt;&lt;/CSOptimizeUsings&gt;&lt;CSShortenReferences&gt;True&lt;/CSShortenReferences&gt;&lt;CSReformatCode&gt;True&lt;/CSReformatCode&gt;&lt;CSharpFormatDocComments&gt;True&lt;/CSharpFormatDocComments&gt;&lt;FormatAttributeQuoteDescriptor&gt;True&lt;/FormatAttributeQuoteDescriptor&gt;&lt;HtmlReformatCode&gt;True&lt;/HtmlReformatCode&gt;&lt;XAMLCollapseEmptyTags&gt;False&lt;/XAMLCollapseEmptyTags&gt;&lt;IDEA_SETTINGS&gt;&amp;lt;profile version=\"1.0\"&amp;gt;&#xD;\n  &amp;lt;option name=\"myName\" value=\"c# Cleanup\" /&amp;gt;&#xD;\n&amp;lt;/profile&amp;gt;&lt;/IDEA_SETTINGS&gt;&lt;RIDER_SETTINGS&gt;&amp;lt;profile&amp;gt;&#xD;\n  &amp;lt;Language id=\"EditorConfig\"&amp;gt;&#xD;\n    &amp;lt;Reformat&amp;gt;false&amp;lt;/Reformat&amp;gt;&#xD;\n  &amp;lt;/Language&amp;gt;&#xD;\n  &amp;lt;Language id=\"HTML\"&amp;gt;&#xD;\n    &amp;lt;OptimizeImports&amp;gt;false&amp;lt;/OptimizeImports&amp;gt;&#xD;\n    &amp;lt;Reformat&amp;gt;false&amp;lt;/Reformat&amp;gt;&#xD;\n    &amp;lt;Rearrange&amp;gt;false&amp;lt;/Rearrange&amp;gt;&#xD;\n  &amp;lt;/Language&amp;gt;&#xD;\n  &amp;lt;Language id=\"JSON\"&amp;gt;&#xD;\n    &amp;lt;Reformat&amp;gt;false&amp;lt;/Reformat&amp;gt;&#xD;\n  &amp;lt;/Language&amp;gt;&#xD;\n  &amp;lt;Language id=\"RELAX-NG\"&amp;gt;&#xD;\n    &amp;lt;Reformat&amp;gt;false&amp;lt;/Reformat&amp;gt;&#xD;\n  &amp;lt;/Language&amp;gt;&#xD;\n  &amp;lt;Language id=\"XML\"&amp;gt;&#xD;\n    &amp;lt;OptimizeImports&amp;gt;false&amp;lt;/OptimizeImports&amp;gt;&#xD;\n    &amp;lt;Reformat&amp;gt;false&amp;lt;/Reformat&amp;gt;&#xD;\n    &amp;lt;Rearrange&amp;gt;false&amp;lt;/Rearrange&amp;gt;&#xD;\n  &amp;lt;/Language&amp;gt;&#xD;\n&amp;lt;/profile&amp;gt;&lt;/RIDER_SETTINGS&gt;&lt;/Profile&gt;</s:String>\n\t<s:String x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpCodeStyle/CONSTRUCTOR_OR_DESTRUCTOR_BODY/@EntryValue\">ExpressionBody</s:String>\n\t<s:String x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpCodeStyle/LOCAL_FUNCTION_BODY/@EntryValue\">ExpressionBody</s:String>\n\t<s:String x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpCodeStyle/METHOD_OR_OPERATOR_BODY/@EntryValue\">ExpressionBody</s:String>\n\t<s:Boolean x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpCodeStyle/USE_HEURISTICS_FOR_BODY_STYLE/@EntryValue\">False</s:Boolean>\n\t<s:String x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_ACCESSORHOLDER_ATTRIBUTE_ON_SAME_LINE_EX/@EntryValue\">NEVER</s:String>\n\t<s:String x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_FIELD_ATTRIBUTE_ON_SAME_LINE_EX/@EntryValue\">NEVER</s:String>\n\t<s:Boolean x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_SIMPLE_ANONYMOUSMETHOD_ON_SINGLE_LINE/@EntryValue\">False</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_BEFORE_BINARY_OPSIGN/@EntryValue\">False</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_BEFORE_BINARY_PATTERN_OP/@EntryValue\">False</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_BEFORE_FIRST_METHOD_CALL/@EntryValue\">True</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_LINES/@EntryValue\">False</s:Boolean>\n\t<s:String x:Key=\"/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_MULTIPLE_TYPE_PARAMEER_CONSTRAINTS_STYLE/@EntryValue\">CHOP_ALWAYS</s:String>\n\t<s:Boolean x:Key=\"/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/WRAP_LINES/@EntryValue\">False</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/CodeStyle/CodeFormatting/ProtobufCodeFormatting/WRAP_LINES/@EntryValue\">False</s:Boolean>\n\t<s:String x:Key=\"/Default/CodeStyle/CodeFormatting/XmlDocFormatter/IndentSubtags/@EntryValue\">RemoveIndent</s:String>\n\t<s:String x:Key=\"/Default/CodeStyle/CodeFormatting/XmlDocFormatter/IndentTagContent/@EntryValue\">RemoveIndent</s:String>\n\t<s:Boolean x:Key=\"/Default/CodeStyle/CodeFormatting/XmlDocFormatter/WRAP_LINES/@EntryValue\">False</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/Environment/ExcludedFiles/FilesAndFoldersToSkip/=6E616A53_002D9BF6_002D4F71_002D9E8E_002D2D99C3CB85F4_002Fd_003Awwwroot_002Fd_003A_005Fcontent_002Fd_003Atinymce/@EntryIndexedValue\">True</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue\">True</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue\">True</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpUseContinuousIndentInsideBracesMigration/@EntryIndexedValue\">True</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue\">True</s:Boolean>\n\t<s:String x:Key=\"/Default/CodeInspection/Highlighting/InspectionSeverities/=SimplifyLinqExpressionUseMinByAndMaxBy/@EntryIndexedValue\">ERROR</s:String>\n\t<s:String x:Key=\"/Default/Housekeeping/UnitTestingMru/UnitTestRunner/SpawnedProcessesResponse/@EntryValue\">DoNothing</s:String>\n\t</wpf:ResourceDictionary>"
  },
  {
    "path": "src/Tests/FakerUsage.cs",
    "content": "﻿using Bogus;\n\n// ReSharper disable RedundantArgumentDefaultValue\n// ReSharper disable UnusedParameter.Local\n\n[TestFixture]\npublic class FakerUsage\n{\n    [Test]\n    public void Sample()\n    {\n        #region BogusUsage\n\n        var faker = new Faker<Target>()\n            .RuleFor(\n                property: u => u.Title,\n                setter: (f, u) => f.WaffleTitle())\n            .RuleFor(\n                property: u => u.Property1,\n                setter: (f, u) => f.WaffleHtml())\n            .RuleFor(\n                property: u => u.Property2,\n                setter: (f, u) => f.WaffleHtml(\n                    paragraphs: 4,\n                    includeHeading: true))\n            .RuleFor(\n                property: u => u.Property3,\n                setter: (f, u) => f.WaffleText())\n            .RuleFor(\n                property: u => u.Property4,\n                setter: (f, u) => f.WaffleText(\n                    paragraphs: 4,\n                    includeHeading: false));\n\n        var target = faker.Generate();\n        Debug.WriteLine(target.Title);\n        Debug.WriteLine(target.Property1);\n        Debug.WriteLine(target.Property2);\n        Debug.WriteLine(target.Property3);\n        Debug.WriteLine(target.Property4);\n\n        #endregion\n    }\n\n    [Test]\n    public void Run()\n    {\n        var faker = new Faker<Target>()\n            .RuleFor(u => u.Title, (f, u) => f.WaffleTitle())\n            .RuleFor(u => u.Property1, (f, u) => f.WaffleHtml())\n            .RuleFor(u => u.Property2, (f, u) => f.WaffleText());\n\n        var target = faker.Generate();\n        Trace.WriteLine(target.Title);\n        Trace.WriteLine(target.Property1);\n        Trace.WriteLine(target.Property2);\n        NotNull(target.Title);\n        IsNotEmpty(target.Title);\n        NotNull(target.Property1);\n        IsNotEmpty(target.Property1);\n        NotNull(target.Property2);\n        IsNotEmpty(target.Property2);\n    }\n\n    public class Target\n    {\n        public string? Property1 { get; set; }\n        public string? Property2 { get; set; }\n        public string? Property3 { get; set; }\n        public string? Property4 { get; set; }\n        public string? Title { get; set; }\n    }\n}"
  },
  {
    "path": "src/Tests/GlobalUsings.cs",
    "content": "﻿// Global using directives\n\nglobal using VerifyTests.DiffPlex;\nglobal using WaffleGenerator;"
  },
  {
    "path": "src/Tests/ModuleInitializer.cs",
    "content": "﻿static class ModuleInitializer\n{\n    [ModuleInitializer]\n    public static void Initialize()\n    {\n        VerifyDiffPlex.Initialize(OutputType.Compact);\n        VerifierSettings.InitializePlugins();\n    }\n}"
  },
  {
    "path": "src/Tests/Tests.csproj",
    "content": "<Project Sdk=\"Microsoft.NET.Sdk\">\n  <PropertyGroup>\n    <TargetFramework>net10.0</TargetFramework>\n  </PropertyGroup>\n  <ItemGroup>\n    <PackageReference Include=\"MarkdownSnippets.MsBuild\" PrivateAssets=\"all\" />\n    <PackageReference Include=\"NUnit\" />\n    <PackageReference Include=\"NUnit3TestAdapter\" />\n    <PackageReference Include=\"Microsoft.NET.Test.Sdk\" />\n    <PackageReference Include=\"Verify.DiffPlex\" />\n    <PackageReference Include=\"Verify.Nunit\" />\n    <PackageReference Include=\"Argon\" />\n    <PackageReference Include=\"DiffEngine\" />\n    <PackageReference Include=\"EmptyFiles\" />\n    <PackageReference Include=\"SimpleInfoName\" />\n    <PackageReference Include=\"Verify\" />\n    <ProjectReference Include=\"..\\WaffleGenerator.Bogus\\WaffleGenerator.Bogus.csproj\" />\n    <ProjectReference Include=\"..\\WaffleGenerator\\WaffleGenerator.csproj\" />\n    <PackageReference Include=\"ProjectDefaults\" PrivateAssets=\"all\" />\n    <Using Include=\"NUnit.Framework.Legacy.ClassicAssert\" Static=\"True\" />\n    <Using Include=\"NUnit.Framework.Assert\" Static=\"True\" />\n  </ItemGroup>\n</Project>\n"
  },
  {
    "path": "src/Tests/WaffleEngineTests.HtmlWaffleMultiple.verified.txt",
    "content": "﻿<h1>The Aesthetic Of Economico-Social Disposition</h1>\n<blockquote>'In this regard, the underlying surrealism of the take home message should not divert attention from The Aesthetic Of Economico-Social Disposition'<br>\n<cite>Humphrey Yokomoto in The Journal of the Total Entative Item (20124U)</cite></blockquote>\n<h2>causation of milieu.</h2>\n<p>\nOn any rational basis, a particular factor, such as the functional baseline, the analogy of object, the strategic requirements or the principal overriding programming provides an interesting insight into the complementary functional derivation. This trend may dissipate due to the mensurable proficiency.\n</p>\n<p>\n<h2>The Potential Economic Competence.</h2>\nOn the other hand, the integrated dominant specification and the resources needed to support it are mandatory. It can be forcibly emphasized that efforts are already underway in the development of the inductive extrinsic rationalization. Albeit, the target population for an implementation strategy for fully interactive phylogenetic value focuses our attention on what is beginning to be termed the \"set of constraints\".\n</p>\n<p>\nTo coin a phrase, the operations scenario in its relation to the separate roles and significances of the ad-hoc politico-strategical time-phase identifies the probability of project success and the strategic overriding competence. We need to be able to rationalize The major theme of the optical reproducible reconstruction. The advent of the set of constraints rigorously posits the work being done at the 'coal-face'.\n</p>\n<p>\n<h2>The Dynamic Effective Partnership.</h2>\nFocussing on the agreed facts, we can say that the dangers inherent in the essential conjectural determinism focuses our attention on the greater objective inductive attitude of the quasi-effectual empirical correspondence.\n</p>\n<p>\n<h2>The Corporate Procedure.</h2>\nfirstly, subdivisions of what amounts to the consultative consistent baseline significantly alters the importance of the work being done at the 'coal-face'.\n</p>\n<p>\nThe religious analogy is taken to be a alternative immediate contingency. Presumably, the core business is reciprocated by the applicability and value of the access to corporate systems.\n</p>\n<p>\nTo recapitulate, the feasibility of the directive subjective morality relates stringently to any impact on overall performance. Conversely, the feasibility of the inductive resonant monologism could go the extra mile for any commonality between the integrated auxiliary antithesis and the crucial test option.\n</p>\n<p>\nThe the criterion of non-viable expressive resources provides us with a win-win situation. Especially if one considers that a concept of what we have come to call the strategic goals underlines the essential paradigm of the proactive sanctioned item. This may explain why the dominant factor clearly supplements the strategic framework. This should be considered in the light of the necessity for budgetary control.\n</p>\n<p>\nSimilarly, the question of a preponderance of the compatible transitional disposition generally maximizes the truly global universal algorithm in its relationship with the multilingual cynicism.\n</p>\n<p>\nNote that:-\n\n  1. The constraints of the knock-on effect stresses the importance of other systems and the necessity for what is beginning to be termed the \"critical privileged impulse\"..\n  2. A psychic operation of what has been termed the definitive resources is reciprocated by the overall game-plan..\n  3. A primary interrelationship between system and/or subsystem technologies exceeds the functionality of the feedback process. One must therefore dedicate resources to the quality driven unprejudiced matrix immediately..\n  4. The adequate functionality of the strategic plan must be considered proactively, rather than reactively, in the light of the resource planning.\n  5. The principle of the ongoing specific programming relates presumably to any adequate resource level. Conversely, any fundamental dichotomies of the calculus of consequence probably delineates the necessity for budgetary control. This trend may dissipate due to the comprehensive hierarchical theme.\n  6. A persistent instability in the principle of the spatio-temporal reciprocity rivals, in terms of resource implications, any discrete or objective configuration mode.\n\n Any fundamental dichotomies of the benchmark inherently sustains the maintenance of current standards and the politico-strategical integration. This may rigorously flounder on the non-viable hypothetical dimension.\n</p>\n<p>\nAn initial appraisal makes it evident that the principle of the the bottom line generally reflects the privileged directive resources and the vibrant pure familiarisation. This should be considered in the light of the critical subsystem mobility.\n</p>\n"
  },
  {
    "path": "src/Tests/WaffleEngineTests.HtmlWaffleMultipleWithHeadAndBody.verified.txt",
    "content": "﻿<html>\n<head>\n<title>The Aesthetic Of Economico-Social Disposition</title>\n</head>\n<body>\n<h1>The Aesthetic Of Economico-Social Disposition</h1>\n<blockquote>'In this regard, the underlying surrealism of the take home message should not divert attention from The Aesthetic Of Economico-Social Disposition'<br>\n<cite>Humphrey Yokomoto in The Journal of the Total Entative Item (20124U)</cite></blockquote>\n<h2>causation of milieu.</h2>\n<p>\nOn any rational basis, a particular factor, such as the functional baseline, the analogy of object, the strategic requirements or the principal overriding programming provides an interesting insight into the complementary functional derivation. This trend may dissipate due to the mensurable proficiency.\n</p>\n<p>\n<h2>The Potential Economic Competence.</h2>\nOn the other hand, the integrated dominant specification and the resources needed to support it are mandatory. It can be forcibly emphasized that efforts are already underway in the development of the inductive extrinsic rationalization. Albeit, the target population for an implementation strategy for fully interactive phylogenetic value focuses our attention on what is beginning to be termed the \"set of constraints\".\n</p>\n<p>\nTo coin a phrase, the operations scenario in its relation to the separate roles and significances of the ad-hoc politico-strategical time-phase identifies the probability of project success and the strategic overriding competence. We need to be able to rationalize The major theme of the optical reproducible reconstruction. The advent of the set of constraints rigorously posits the work being done at the 'coal-face'.\n</p>\n<p>\n<h2>The Dynamic Effective Partnership.</h2>\nFocussing on the agreed facts, we can say that the dangers inherent in the essential conjectural determinism focuses our attention on the greater objective inductive attitude of the quasi-effectual empirical correspondence.\n</p>\n<p>\n<h2>The Corporate Procedure.</h2>\nfirstly, subdivisions of what amounts to the consultative consistent baseline significantly alters the importance of the work being done at the 'coal-face'.\n</p>\n<p>\nThe religious analogy is taken to be a alternative immediate contingency. Presumably, the core business is reciprocated by the applicability and value of the access to corporate systems.\n</p>\n<p>\nTo recapitulate, the feasibility of the directive subjective morality relates stringently to any impact on overall performance. Conversely, the feasibility of the inductive resonant monologism could go the extra mile for any commonality between the integrated auxiliary antithesis and the crucial test option.\n</p>\n<p>\nThe the criterion of non-viable expressive resources provides us with a win-win situation. Especially if one considers that a concept of what we have come to call the strategic goals underlines the essential paradigm of the proactive sanctioned item. This may explain why the dominant factor clearly supplements the strategic framework. This should be considered in the light of the necessity for budgetary control.\n</p>\n<p>\nSimilarly, the question of a preponderance of the compatible transitional disposition generally maximizes the truly global universal algorithm in its relationship with the multilingual cynicism.\n</p>\n<p>\nNote that:-\n\n  1. The constraints of the knock-on effect stresses the importance of other systems and the necessity for what is beginning to be termed the \"critical privileged impulse\"..\n  2. A psychic operation of what has been termed the definitive resources is reciprocated by the overall game-plan..\n  3. A primary interrelationship between system and/or subsystem technologies exceeds the functionality of the feedback process. One must therefore dedicate resources to the quality driven unprejudiced matrix immediately..\n  4. The adequate functionality of the strategic plan must be considered proactively, rather than reactively, in the light of the resource planning.\n  5. The principle of the ongoing specific programming relates presumably to any adequate resource level. Conversely, any fundamental dichotomies of the calculus of consequence probably delineates the necessity for budgetary control. This trend may dissipate due to the comprehensive hierarchical theme.\n  6. A persistent instability in the principle of the spatio-temporal reciprocity rivals, in terms of resource implications, any discrete or objective configuration mode.\n\n Any fundamental dichotomies of the benchmark inherently sustains the maintenance of current standards and the politico-strategical integration. This may rigorously flounder on the non-viable hypothetical dimension.\n</p>\n<p>\nAn initial appraisal makes it evident that the principle of the the bottom line generally reflects the privileged directive resources and the vibrant pure familiarisation. This should be considered in the light of the critical subsystem mobility.\n</p>\n</body>\n</html>"
  },
  {
    "path": "src/Tests/WaffleEngineTests.HtmlWaffleNoHeading.verified.txt",
    "content": "﻿<h1>The Aesthetic Of Economico-Social Disposition</h1>\n<blockquote>'In this regard, the underlying surrealism of the take home message should not divert attention from The Aesthetic Of Economico-Social Disposition'<br>\n<cite>Humphrey Yokomoto in The Journal of the Total Entative Item (20124U)</cite></blockquote>\n<h2>causation of milieu.</h2>\n<p>\nOn any rational basis, a particular factor, such as the functional baseline, the analogy of object, the strategic requirements or the principal overriding programming provides an interesting insight into the complementary functional derivation. This trend may dissipate due to the mensurable proficiency.\n</p>\n"
  },
  {
    "path": "src/Tests/WaffleEngineTests.HtmlWaffleNoHeadingWithHeadAndBody.verified.txt",
    "content": "﻿<html>\n<head>\n<title>The Aesthetic Of Economico-Social Disposition</title>\n</head>\n<body>\n<h1>The Aesthetic Of Economico-Social Disposition</h1>\n<blockquote>'In this regard, the underlying surrealism of the take home message should not divert attention from The Aesthetic Of Economico-Social Disposition'<br>\n<cite>Humphrey Yokomoto in The Journal of the Total Entative Item (20124U)</cite></blockquote>\n<h2>causation of milieu.</h2>\n<p>\nOn any rational basis, a particular factor, such as the functional baseline, the analogy of object, the strategic requirements or the principal overriding programming provides an interesting insight into the complementary functional derivation. This trend may dissipate due to the mensurable proficiency.\n</p>\n</body>\n</html>"
  },
  {
    "path": "src/Tests/WaffleEngineTests.HtmlWaffleSingle.verified.txt",
    "content": "﻿<h1>The Aesthetic Of Economico-Social Disposition</h1>\n<blockquote>'In this regard, the underlying surrealism of the take home message should not divert attention from The Aesthetic Of Economico-Social Disposition'<br>\n<cite>Humphrey Yokomoto in The Journal of the Total Entative Item (20124U)</cite></blockquote>\n<h2>causation of milieu.</h2>\n<p>\nOn any rational basis, a particular factor, such as the functional baseline, the analogy of object, the strategic requirements or the principal overriding programming provides an interesting insight into the complementary functional derivation. This trend may dissipate due to the mensurable proficiency.\n</p>\n"
  },
  {
    "path": "src/Tests/WaffleEngineTests.HtmlWaffleSingleWithHeadAndBody.verified.txt",
    "content": "﻿<html>\n<head>\n<title>The Aesthetic Of Economico-Social Disposition</title>\n</head>\n<body>\n<h1>The Aesthetic Of Economico-Social Disposition</h1>\n<blockquote>'In this regard, the underlying surrealism of the take home message should not divert attention from The Aesthetic Of Economico-Social Disposition'<br>\n<cite>Humphrey Yokomoto in The Journal of the Total Entative Item (20124U)</cite></blockquote>\n<h2>causation of milieu.</h2>\n<p>\nOn any rational basis, a particular factor, such as the functional baseline, the analogy of object, the strategic requirements or the principal overriding programming provides an interesting insight into the complementary functional derivation. This trend may dissipate due to the mensurable proficiency.\n</p>\n</body>\n</html>"
  },
  {
    "path": "src/Tests/WaffleEngineTests.MarkdownWaffleMultiple.verified.md",
    "content": "# The Aesthetic Of Economico-Social Disposition\n\n > In this regard, the underlying surrealism of the take home message should not divert attention from The Aesthetic Of Economico-Social Disposition\n\n * Humphrey Yokomoto in The Journal of the Total Entative Item (20124U)\n\n## causation of milieu.\n\nOn any rational basis, a particular factor, such as the functional baseline, the analogy of object, the strategic requirements or the principal overriding programming provides an interesting insight into the complementary functional derivation. This trend may dissipate due to the mensurable proficiency.\n\n## The Potential Economic Competence.\n\nOn the other hand, the integrated dominant specification and the resources needed to support it are mandatory. It can be forcibly emphasized that efforts are already underway in the development of the inductive extrinsic rationalization. Albeit, the target population for an implementation strategy for fully interactive phylogenetic value focuses our attention on what is beginning to be termed the \"set of constraints\".\n\nTo coin a phrase, the operations scenario in its relation to the separate roles and significances of the ad-hoc politico-strategical time-phase identifies the probability of project success and the strategic overriding competence. We need to be able to rationalize The major theme of the optical reproducible reconstruction. The advent of the set of constraints rigorously posits the work being done at the 'coal-face'.\n\n## The Dynamic Effective Partnership.\n\nFocussing on the agreed facts, we can say that the dangers inherent in the essential conjectural determinism focuses our attention on the greater objective inductive attitude of the quasi-effectual empirical correspondence.\n\n## The Corporate Procedure.\n\nfirstly, subdivisions of what amounts to the consultative consistent baseline significantly alters the importance of the work being done at the 'coal-face'.\n\nThe religious analogy is taken to be a alternative immediate contingency. Presumably, the core business is reciprocated by the applicability and value of the access to corporate systems.\n\nTo recapitulate, the feasibility of the directive subjective morality relates stringently to any impact on overall performance. Conversely, the feasibility of the inductive resonant monologism could go the extra mile for any commonality between the integrated auxiliary antithesis and the crucial test option.\n\nThe the criterion of non-viable expressive resources provides us with a win-win situation. Especially if one considers that a concept of what we have come to call the strategic goals underlines the essential paradigm of the proactive sanctioned item. This may explain why the dominant factor clearly supplements the strategic framework. This should be considered in the light of the necessity for budgetary control.\n\nSimilarly, the question of a preponderance of the compatible transitional disposition generally maximizes the truly global universal algorithm in its relationship with the multilingual cynicism.\n\nNote that:-\n\n  1. The constraints of the knock-on effect stresses the importance of other systems and the necessity for what is beginning to be termed the \"critical privileged impulse\"..\n  2. A psychic operation of what has been termed the definitive resources is reciprocated by the overall game-plan..\n  3. A primary interrelationship between system and/or subsystem technologies exceeds the functionality of the feedback process. One must therefore dedicate resources to the quality driven unprejudiced matrix immediately..\n  4. The adequate functionality of the strategic plan must be considered proactively, rather than reactively, in the light of the resource planning.\n  5. The principle of the ongoing specific programming relates presumably to any adequate resource level. Conversely, any fundamental dichotomies of the calculus of consequence probably delineates the necessity for budgetary control. This trend may dissipate due to the comprehensive hierarchical theme.\n  6. A persistent instability in the principle of the spatio-temporal reciprocity rivals, in terms of resource implications, any discrete or objective configuration mode.\n\n Any fundamental dichotomies of the benchmark inherently sustains the maintenance of current standards and the politico-strategical integration. This may rigorously flounder on the non-viable hypothetical dimension.\n\nAn initial appraisal makes it evident that the principle of the the bottom line generally reflects the privileged directive resources and the vibrant pure familiarisation. This should be considered in the light of the critical subsystem mobility.\n\n"
  },
  {
    "path": "src/Tests/WaffleEngineTests.MarkdownWaffleNoHeading.verified.md",
    "content": "Only in the case of the performance objectives can one state that an overall understanding of any ad-hoc implicit delivery shows an interesting ambivalence with the parallel entative delivery or the three-tier resonant teleology.\n\n"
  },
  {
    "path": "src/Tests/WaffleEngineTests.MarkdownWaffleSingle.verified.md",
    "content": "# The Aesthetic Of Economico-Social Disposition\n\n > In this regard, the underlying surrealism of the take home message should not divert attention from The Aesthetic Of Economico-Social Disposition\n\n * Humphrey Yokomoto in The Journal of the Total Entative Item (20124U)\n\n## causation of milieu.\n\nOn any rational basis, a particular factor, such as the functional baseline, the analogy of object, the strategic requirements or the principal overriding programming provides an interesting insight into the complementary functional derivation. This trend may dissipate due to the mensurable proficiency.\n\n"
  },
  {
    "path": "src/Tests/WaffleEngineTests.TextWaffleMultiple.verified.txt",
    "content": "﻿The Aesthetic Of Economico-Social Disposition\n\n'In this regard, the underlying surrealism of the take home message should not divert attention from The Aesthetic Of Economico-Social Disposition'\n\n - Humphrey Yokomoto in The Journal of the Total Entative Item (20124U)\n\ncausation of milieu.\n\nOn any rational basis, a particular factor, such as the functional baseline, the analogy of object, the strategic requirements or the principal overriding programming provides an interesting insight into the complementary functional derivation. This trend may dissipate due to the mensurable proficiency.\n\nThe Potential Economic Competence.\n\nOn the other hand, the integrated dominant specification and the resources needed to support it are mandatory. It can be forcibly emphasized that efforts are already underway in the development of the inductive extrinsic rationalization. Albeit, the target population for an implementation strategy for fully interactive phylogenetic value focuses our attention on what is beginning to be termed the \"set of constraints\".\n\nTo coin a phrase, the operations scenario in its relation to the separate roles and significances of the ad-hoc politico-strategical time-phase identifies the probability of project success and the strategic overriding competence. We need to be able to rationalize The major theme of the optical reproducible reconstruction. The advent of the set of constraints rigorously posits the work being done at the 'coal-face'.\n\nThe Dynamic Effective Partnership.\n\nFocussing on the agreed facts, we can say that the dangers inherent in the essential conjectural determinism focuses our attention on the greater objective inductive attitude of the quasi-effectual empirical correspondence.\n\nThe Corporate Procedure.\n\nfirstly, subdivisions of what amounts to the consultative consistent baseline significantly alters the importance of the work being done at the 'coal-face'.\n\nThe religious analogy is taken to be a alternative immediate contingency. Presumably, the core business is reciprocated by the applicability and value of the access to corporate systems.\n\nTo recapitulate, the feasibility of the directive subjective morality relates stringently to any impact on overall performance. Conversely, the feasibility of the inductive resonant monologism could go the extra mile for any commonality between the integrated auxiliary antithesis and the crucial test option.\n\nThe the criterion of non-viable expressive resources provides us with a win-win situation. Especially if one considers that a concept of what we have come to call the strategic goals underlines the essential paradigm of the proactive sanctioned item. This may explain why the dominant factor clearly supplements the strategic framework. This should be considered in the light of the necessity for budgetary control.\n\nSimilarly, the question of a preponderance of the compatible transitional disposition generally maximizes the truly global universal algorithm in its relationship with the multilingual cynicism.\n\nNote that:-\n\n  1. The constraints of the knock-on effect stresses the importance of other systems and the necessity for what is beginning to be termed the \"critical privileged impulse\"..\n  2. A psychic operation of what has been termed the definitive resources is reciprocated by the overall game-plan..\n  3. A primary interrelationship between system and/or subsystem technologies exceeds the functionality of the feedback process. One must therefore dedicate resources to the quality driven unprejudiced matrix immediately..\n  4. The adequate functionality of the strategic plan must be considered proactively, rather than reactively, in the light of the resource planning.\n  5. The principle of the ongoing specific programming relates presumably to any adequate resource level. Conversely, any fundamental dichotomies of the calculus of consequence probably delineates the necessity for budgetary control. This trend may dissipate due to the comprehensive hierarchical theme.\n  6. A persistent instability in the principle of the spatio-temporal reciprocity rivals, in terms of resource implications, any discrete or objective configuration mode.\n\n Any fundamental dichotomies of the benchmark inherently sustains the maintenance of current standards and the politico-strategical integration. This may rigorously flounder on the non-viable hypothetical dimension.\n\nAn initial appraisal makes it evident that the principle of the the bottom line generally reflects the privileged directive resources and the vibrant pure familiarisation. This should be considered in the light of the critical subsystem mobility.\n"
  },
  {
    "path": "src/Tests/WaffleEngineTests.TextWaffleNoHeading.verified.txt",
    "content": "﻿Only in the case of the performance objectives can one state that an overall understanding of any ad-hoc implicit delivery shows an interesting ambivalence with the parallel entative delivery or the three-tier resonant teleology.\n"
  },
  {
    "path": "src/Tests/WaffleEngineTests.TextWaffleSingle.verified.txt",
    "content": "﻿The Aesthetic Of Economico-Social Disposition\n\n'In this regard, the underlying surrealism of the take home message should not divert attention from The Aesthetic Of Economico-Social Disposition'\n\n - Humphrey Yokomoto in The Journal of the Total Entative Item (20124U)\n\ncausation of milieu.\n\nOn any rational basis, a particular factor, such as the functional baseline, the analogy of object, the strategic requirements or the principal overriding programming provides an interesting insight into the complementary functional derivation. This trend may dissipate due to the mensurable proficiency.\n"
  },
  {
    "path": "src/Tests/WaffleEngineTests.Title.verified.txt",
    "content": "﻿The Aesthetic Of Economico-Social Disposition"
  },
  {
    "path": "src/Tests/WaffleEngineTests.cs",
    "content": "﻿[TestFixture]\npublic class WaffleEngineTests\n{\n    [Test]\n    public void TextWaffleSample()\n    {\n        #region textUsage\n\n        var text = WaffleEngine.Text(\n            paragraphs: 1,\n            includeHeading: true);\n        Debug.WriteLine(text);\n\n        #endregion\n    }\n\n    [Test]\n    public void MarkdownWaffleSample()\n    {\n        #region markdownUsage\n\n        var markdown = WaffleEngine.Markdown(\n            paragraphs: 1,\n            includeHeading: true);\n        Debug.WriteLine(markdown);\n\n        #endregion\n    }\n\n    [Test]\n    public void HtmlWaffleSample()\n    {\n        #region htmlUsage\n\n        var text = WaffleEngine.Html(\n            paragraphs: 2,\n            includeHeading: true,\n            includeHeadAndBody: true);\n        Debug.WriteLine(text);\n\n        #endregion\n    }\n\n    [Test]\n    public Task TextWaffleSingle()\n    {\n        var random = new Random(0);\n        var text = WaffleEngine.Text(random, 1, true);\n        return Verify(text);\n    }\n\n    [Test]\n    public void EndsWith()\n    {\n        True(new StringBuilder(\"a\").EndsWith('a'));\n        True(new StringBuilder(\"ba\").EndsWith('a'));\n        True(new StringBuilder(\"ba\").EndsWith('b', 'a'));\n        True(new StringBuilder(\"a \").EndsWith('a'));\n        True(new StringBuilder(\"ba \").EndsWith('a'));\n        True(new StringBuilder(\"ba \").EndsWith('b', 'a'));\n        True(new StringBuilder(\"a\t\").EndsWith('a'));\n        True(new StringBuilder(\"ba\t\").EndsWith('a'));\n        True(new StringBuilder(\"ba\t\").EndsWith('b', 'a'));\n\n        False(new StringBuilder(\"a\").EndsWith('c'));\n        False(new StringBuilder(\"ba\").EndsWith('c'));\n        False(new StringBuilder(\"ba\").EndsWith('c', 'd'));\n        False(new StringBuilder(\"a \").EndsWith('c'));\n        False(new StringBuilder(\"ba \").EndsWith('c'));\n        False(new StringBuilder(\"ba \").EndsWith('c', 'd'));\n        False(new StringBuilder(\"a\t\").EndsWith('c'));\n        False(new StringBuilder(\"ba\t\").EndsWith('c'));\n        False(new StringBuilder(\"ba\t\").EndsWith('c', 'd'));\n        False(new StringBuilder(\" \").EndsWith('c'));\n        False(new StringBuilder(\"\t\").EndsWith('c'));\n        False(new StringBuilder(\"\").EndsWith('c'));\n        False(new StringBuilder(\"\").EndsWith('c'));\n    }\n\n    [Test]\n    public void MultiTextShouldNotDuplicate()\n    {\n        var text1 = WaffleEngine.Text(1, true);\n        var text2 = WaffleEngine.Text(1, true);\n        AreNotEqual(text1, text2);\n    }\n\n    [Test]\n    public void MultiHtmlShouldNotDuplicate()\n    {\n        var text1 = WaffleEngine.Html(1, true, true);\n        var text2 = WaffleEngine.Html(1, true, true);\n        AreNotEqual(text1, text2);\n    }\n\n    [Test]\n    public void MultiMarkdownShouldNotDuplicate()\n    {\n        var text1 = WaffleEngine.Markdown(1, true);\n        var text2 = WaffleEngine.Markdown(1, true);\n        AreNotEqual(text1, text2);\n    }\n\n    [Test]\n    public Task MarkdownWaffleSingle()\n    {\n        var random = new Random(0);\n        var text = WaffleEngine.Markdown(random, 1, true);\n        return Verify(text, \"md\");\n    }\n\n    [Test]\n    public Task Title()\n    {\n        var random = new Random(0);\n        var title = WaffleEngine.Title(random);\n        return Verify(title);\n    }\n\n    [Test]\n    public Task HtmlWaffleSingle()\n    {\n        var random = new Random(0);\n        var html = WaffleEngine.Html(random, 1, true, false);\n        return Verify(html);\n    }\n\n    [Test]\n    public Task HtmlWaffleSingleWithHeadAndBody()\n    {\n        var random = new Random(0);\n        var html = WaffleEngine.Html(random, 1, true, true);\n        return Verify(html);\n    }\n\n    [Test]\n    public Task TextWaffleMultiple()\n    {\n        var random = new Random(0);\n        var text = WaffleEngine.Text(random, 11, true);\n        return Verify(text);\n    }\n\n    [Test]\n    public Task MarkdownWaffleMultiple()\n    {\n        var random = new Random(0);\n        var text = WaffleEngine.Markdown(random, 11, true);\n        return Verify(text, \"md\");\n    }\n\n    [Test]\n    public Task HtmlWaffleMultiple()\n    {\n        var random = new Random(0);\n        var html = WaffleEngine.Html(random, 11, true, false);\n        return Verify(html);\n    }\n\n    [Test]\n    public Task HtmlWaffleMultipleWithHeadAndBody()\n    {\n        var random = new Random(0);\n        var html = WaffleEngine.Html(random, 11, true, true);\n        return Verify(html);\n    }\n\n    [Test]\n    public Task TextWaffleNoHeading()\n    {\n        var random = new Random(0);\n        var text = WaffleEngine.Text(random, 1, false);\n        return Verify(text);\n    }\n\n    [Test]\n    public Task MarkdownWaffleNoHeading()\n    {\n        var random = new Random(0);\n        var text = WaffleEngine.Markdown(random, 1, false);\n        return Verify(text, \"md\");\n    }\n\n    [Test]\n    public Task HtmlWaffleNoHeading()\n    {\n        var random = new Random(0);\n        var html = WaffleEngine.Html(random, 1, true, false);\n        return Verify(html);\n    }\n\n    [Test]\n    public Task HtmlWaffleNoHeadingWithHeadAndBody()\n    {\n        var random = new Random(0);\n        var html = WaffleEngine.Html(random, 1, true, true);\n        return Verify(html);\n    }\n}"
  },
  {
    "path": "src/WaffleGenerator/AssemblyInfo.cs",
    "content": "﻿[assembly: InternalsVisibleTo(\"Tests, PublicKey=00240000048000009400000006020000002400005253413100040000010001006944a8a4c5de92d68196a123157958d8f212381e1e21a772626e9c86cf8032f457f5b3d669045c4183f4d8dc89be3ae953ccba62b7522b2633156d0c886597509d50de36ce53cac9eebae9146e061bd6933499c740f56770c9ca3052f51de162791f86ea316ae4e3345c58b53e5743a3301359820655979aafefb40384c585c5\")]"
  },
  {
    "path": "src/WaffleGenerator/Constants.cs",
    "content": "// ReSharper disable StringLiteralTypo\n\nclass Constants\n{\n    public static string[] preamblePhrases =\n    [\n        \"\"\"\n        In broad terms, we can define the main issues with |t. There are :-\n          * The |o of |o: |B |C |D.\n          * The |o of |o: |B |C |D.\n          * The |o of |o: |B |C |D.\n          * The |o of |o: |B |C |D.\n\n\n        \"\"\",\n        \"\"\"\n        The following points should be appreciated about |t;\n          1. |B |C |D.\n          2. |B |C |D.\n          3. |B |C |D.\n          4. |B |C |D.\n          5. |B |C |D.\n          6. |B |C |D.\n\n\n        \"\"\",\n        \"\"\"\n        Note that:-\n\n          1. |B |C |D..\n          2. |B |C |D..\n          3. |B |C |D.\n          4. |B |C |D.\n          5. |B |C |D.\n          6. |B |C |D.\n\n\n        \"\"\",\n        \"\"\"\n        Essentially;\n\n          * |B |C |D.\n          * |B |C |D.\n          * |B |C |D.\n          * |B |C |D.\n          * |B |C |D.\n          * |B |C |D.\n\n\n        \"\"\",\n        \"\"\"\n        To make the main points more explicit, it is fair to say that;\n          * |B |C |D.\n          * |B |C |D.\n          * |B |C |D.\n          * |B |C |D.\n\n\n        \"\"\",\n        \"We have heard it said, tongue-in-cheek, that\",\n        \"To be quite frank,\",\n        \"Focussing on the agreed facts, we can say that\",\n        \"To be perfectly truthful,\",\n        \"In broad terms,\",\n        \"To be perfectly honest,\",\n        \"It was |f |s who first pointed out that\",\n        \"Since |f |s's first formulation of the |c, it has become fairly obvious that\",\n        \"Since the seminal work of |f |s it has generally been accepted that\",\n        \"Without a doubt, |f |s i was right in saying that\",\n        \"As regards |h |c, We should put this one to bed. On the other hand,\",\n        \"As regards |h |c, This may have a knock-on effect. On the other hand,\",\n        \"We must take on board that fact that\",\n        \"Without a doubt, |B |C |D. So, where to from here? Presumably,\",\n        \"It has hitherto been accepted that\",\n        \"At the end of the day,\",\n        \"Under the provision of the overall |1 plan,\",\n        \"Firming up the gaps, one can say that\",\n        \"Within the bounds of |h |c,\",\n        \"The |h |c provides us with a win-win situation. Especially if one considers that\",\n        \"There are swings and roundabouts in considering that\",\n        \"To be precise,\",\n        \"Whilst taking the subject of  |h |c offline, one must add that\",\n        \"For example,\",\n        \"An orthodox view is that\",\n        \"To reiterate,\",\n        \"To recapitulate,\",\n        \"Strictly speaking,\",\n        \"In a very real sense,\",\n        \"Regarding the nature of |h |c,\",\n        \"In a strictly mechanistic sense,\",\n        \"One is struck quite forcibly by the fact that\",\n        \"In any event,\",\n        \"In particular,\",\n        \"In assessing the |c, one should think outside the box. on the other hand,\",\n        \"On the other hand,\",\n        \"It is recognized that\",\n        \"Focusing specifically on the relationship between |h |c and any |c,\",\n        \"Although it is fair to say that |B |C |D, one should take this out of the loop\",\n        \"|bly,\",\n        \"|bly,\",\n        \"|bly,\",\n        \"Be that as it may,\",\n        \"Taking everything into consideration,\",\n        \"As in so many cases, we can state that\",\n        \"The |c cannot explain all the problems in maximizing the efficacy of |h |c. Generally\",\n        \"We can confidently base our case on an assumption that\",\n        \"An initial appraisal makes it evident that\",\n        \"An investigation of the |1 factors suggests that\",\n        \"It is common knowledge that\",\n        \"Despite an element of volatility,\",\n        \"The less obviously co-existential factors imply that\",\n        \"To coin a phrase,\",\n        \"One might venture to suggest that\",\n        \"In all foreseeable circumstances,\",\n        \"However,\",\n        \"Similarly,\",\n        \"As a resultant implication,\",\n        \"There is a strong body of opinion that affirms that\",\n        \"Up to a point,\",\n        \"Quite frankly,\",\n        \"In this regard,\",\n        \"Based on integral subsystems,\",\n        \"For example,\",\n        \"Therefore,\",\n        \"Within current constraints on manpower resources,\",\n        \"Up to a certain point,\",\n        \"In an ideal environment,\",\n        \"It might seem reasonable to think of |h |c as involving |h |c. Nevertheless,\",\n        \"It can be forcibly emphasized that\",\n        \"Thus,\",\n        \"Within the restrictions of |h |c,\",\n        \"In respect to specific goals,\",\n        \"It is important to realize that\",\n        \"To put it concisely,\",\n        \"To be perfectly frank,\",\n        \"On any rational basis,\",\n        \"In any event,\",\n        \"On the basis of |h |2 |3,\",\n        \"With all the relevant considerations taken into account, it can be stated that\",\n        \"Few would disagree, however, that\",\n        \"It goes without saying that\",\n        \"Only in the case of the |c can one state that\",\n        \"if one considers the |c in the light of |h |c,\",\n        \"The |c is taken to be a |c. Presumably,\",\n        \"So far,\",\n        \"It is quite instructive to compare |h |c and |h |c. In the latter case,\",\n        \"Obviously,\",\n        \"By and large,\",\n        \"Possibly,\",\n        \"One can, with a certain degree of confidence, conclude that\",\n        \"Without doubt,\",\n        \"With due caution, one can postulate that\",\n        \"The |c is clearly related to |h |c. Nevertheless,\",\n        \"There is probably no causal link between the |c and |h |c. However\",\n        \"In the light of |h |c, it is clear that\",\n        \"No one can deny the relevance of |h |c. Equally it is certain that\",\n        \"Albeit,\",\n        \"It is precisely the influence of |h |c for |t that makes the |c inevitable, Equally,\",\n        \"One must clearly state that\",\n        \"In connection with |h |c,\",\n        \"Normally\",\n        \"one can, quite consistently, say that\",\n        \"Clearly, it is becoming possible to resolve the difficulties in assuming that\",\n        \"Within normal variability,\",\n        \"There can be little doubt that\",\n        \"Few would deny that\",\n        \"It is not often |e stated that\",\n        \"In real terms,\",\n        \"In this day and age,\",\n        \"It is |e stated that\",\n        \"The position in regard to the |c is that\",\n        \"On one hand |B |C |D, but on the other hand\",\n        \"One hears it stated that |B |C |D, but it is more likely that\",\n        \"Whilst it may be true that |B |C |D, one must not lose sight of the fact that\"\n    ];\n\n    public static string[] subjectPhrases =\n    [\n        \"|h strategic goals\",\n        \"|h gap analysis\",\n        \"|h hardball\",\n        \"|h purchaser - provider\",\n        \"|h skill set\",\n        \"|h knock-on effect\",\n        \"|h strategic plan\",\n        \"|h the bottom line\",\n        \"|h mindset\",\n        \"|h benchmark\",\n        \"|h core business\",\n        \"|h  big picture\",\n        \"|h take home message\",\n        \"|h lessons learnt\",\n        \"|h movers and shakers\",\n        \"|h knowledge base\",\n        \"the ball-park figures for the |c\",\n        \"The core drivers\",\n        \"a particular factor, such as the |c, the |c, the |c or the |c\",\n        \"there is an apparent contradiction between the |c and |h |c. However, |h |c\",\n        \"the question of |h |c\",\n        \"the desirability of attaining |h |c, as far as the |c is concerned,\",\n        \"a persistent instability in |h |c\",\n        \"examination of |2 instances\",\n        \"the classic definition of |h |c\",\n        \"firm assumptions about |c\",\n        \"the |c and the resources needed to support it are mandatory. |A |B\",\n        \"significant progress has been made in the |c. |A |B\",\n        \"efforts are already underway in the development of the |c. |A |B\",\n        \"a |2 operation of |h |c\",\n        \"subdivisions of |h |c\",\n        \"an anticipation of the effects of any |c\",\n        \"an overall understanding of |h |c\",\n        \"the assertion of the importance of the |c\",\n        \"an understanding of the necessary relationship between the |c and any |c\",\n        \"the possibility, that the |c plays a decisive part in influencing |h |c,\",\n        \"any solution to the problem of |h |c\",\n        \"the lack of understanding of |h |c\",\n        \"the |c in its relation to |h |c\",\n        \"parameters within |h |c\",\n        \"the target population for |h |c\",\n        \"initiation of |h |c\",\n        \"both |c and |c\",\n        \"|h |c\",\n        \"an extrapolation of the |c\",\n        \"|h |c\",\n        \"the assessment of any significant weaknesses in the |c\",\n        \"any subsequent interpolation\",\n        \"|h |c is |e significant. On the other hand |h |c\",\n        \"|h |c relates |e to any |c. Conversely, |h |c\",\n        \"|h |c may be |e important. The |c\",\n        \"the incorporation of the |c\",\n        \"the quest for the |c\",\n        \"the dangers inherent in the |c\",\n        \"the value of the |c\",\n        \"the |c\",\n        \"an unambiguous concept of the |c\",\n        \"a metonymic reconstruction of the |c\",\n        \"a primary interrelationship between system and/or subsystem technologies\"\n    ];\n\n    public static string[] verbPhrases =\n    [\n        \"|d the overall efficiency of\",\n        \"|d the |4 and |C\",\n        \"can fully utilize\",\n        \"will move the goal posts for\",\n        \"would stretch the envelope of\",\n        \"enables us to tick the boxes of\",\n        \"could go the extra mile for\",\n        \"should empower employees to produce\",\n        \"should touch base with\",\n        \"probably |d\",\n        \"is generally compatible with\",\n        \"provides the bandwidth for\",\n        \"gives a win-win situation for\",\n        \"has clear ramifications for\",\n        \"has been made imperative in view of\",\n        \"provides the context for\",\n        \"underpins the importance of\",\n        \"focuses our attention on\",\n        \"will require a substantial amount of effort. |A |B |C\",\n        \"represents a different business risk.  |A |B |C\",\n        \"is of considerable importance from the production aspect. |A |B |C\",\n        \"should facilitate information exchange.  |A |B |C\",\n        \"has the intrinsic benefit of resilience, unlike the\",\n        \"cannot be shown to be relevant. This is in contrast to\",\n        \"cannot always help us.  |A |B |C\",\n        \"|C |D. A priority should be established based on a combination of |c and |c\",\n        \"|C |D. The objective of the |c is to delineate\",\n        \"shows an interesting ambivalence with\",\n        \"underlines the essential paradigm of\",\n        \"can be taken in juxtaposition with\",\n        \"provides an interesting insight into\",\n        \"must seem over simplistic in the light of\",\n        \"seems to |e reinforce the importance of\",\n        \"leads clearly to the rejection of the supremacy of\",\n        \"allows us to see the clear significance of\",\n        \"underlines the significance of\",\n        \"reinforces the weaknesses in\",\n        \"confuses the |c and\",\n        \"|d the |c and\",\n        \"|d\",\n        \"|d\",\n        \"|d\",\n        \"|d\",\n        \"|d\",\n        \"|d\",\n        \"provides a harmonic integration with\",\n        \"is constantly directing the course of\",\n        \"must intrinsically determine\",\n        \"has fundamental repercussions for\",\n        \"provides an idealized framework for\",\n        \"|e alters the importance of\",\n        \"|e changes the interrelationship between the|c and\",\n        \"|e legitimises the significance of\",\n        \"must utilize and be functionally interwoven with\",\n        \"|d the probability of project success and\",\n        \"|e |d the |c and\",\n        \"|e |d the |c and\",\n        \"|e |d the |c and\",\n        \"|e |d the |c in its relationship with\",\n        \"|d the dangers quite |e of\",\n        \"has confirmed an expressed desire for\",\n        \"is reciprocated by\",\n        \"has no other function than to provide\",\n        \"adds explicit performance limits to\",\n        \"must be considered proactively, rather than reactively, in the light of\",\n        \"necessitates that urgent consideration be applied to\",\n        \"requires considerable systems analysis and trade-off studies to arrive at\",\n        \"provides a heterogeneous environment to\",\n        \"cannot compare in its potential exigencies with\",\n        \"is further compounded, when taking into account\",\n        \"presents extremely interesting challenges to\",\n        \"|d the importance of other systems and the necessity for\",\n        \"provides one of the dominant factors of\",\n        \"forms the basis for\",\n        \"enhances the efficiency of\",\n        \"develops a vision to leverage\",\n        \"produces diagnostic feedback to\",\n        \"capitalises on the strengths of\",\n        \"effects a significant implementation of\",\n        \"seems to counterpoint\",\n        \"adds overriding performance constraints to\",\n        \"manages to subsume\",\n        \"provides a balanced perspective to\",\n        \"rivals, in terms of resource implications,\",\n        \"contrives through the medium of the |c to emphasize\",\n        \"can be developed in parallel with\",\n        \"commits resources to\",\n        \"confounds the essential conformity of\",\n        \"provides the bridge between the |c and\",\n        \"should be provided to expedite investigation into\",\n        \"poses problems and challenges for both the |c and\",\n        \"should not divert attention from\",\n        \"provides an insight into\",\n        \"has considerable manpower implications when considered in the light of\",\n        \"may mean a wide diffusion of the |c into\",\n        \"makes little difference to\",\n        \"focuses our attention on\",\n        \"exceeds the functionality of\",\n        \"recognizes deficiencies in\",\n        \"needs to be factored into the equation alongside the\",\n        \"needs to be addressed along with the\"\n    ];\n\n    public static string[] objectPhrases =\n    [\n        \"the overall game-plan\",\n        \"the slippery slope\",\n        \"the strategic fit\",\n        \"The total quality objectives\",\n        \"the |c. This should be considered in the light of the |c\",\n        \"the |c. One must therefore dedicate resources to the |c immediately.\",\n        \"the |c on a strictly limited basis\",\n        \"this |c. This should present few practical problems\",\n        \"what should be termed the |c\",\n        \"the applicability and value of the |c\",\n        \"the |c or the |c\",\n        \"the negative aspects of any |c\",\n        \"an unambiguous concept of the |c\",\n        \"the thematic reconstruction of |c\",\n        \"the scientific |o of the |c\",\n        \"the evolution of |2 |o over a given time limit\",\n        \"any commonality between the |c and the |c\",\n        \"the greater |c of the |c\",\n        \"the universe of |o\",\n        \"any discrete or |2 configuration mode\",\n        \"the |4\",\n        \"an elemental change in the |c\",\n        \"the work being done at the 'coal-face'\",\n        \"what is beginning to be termed the \\\"|c\\\"\",\n        \"the |c. We need to be able to rationalize |D\",\n        \"the |c. We can then |e play back our understanding of |D\",\n        \"the |c. Everything should be done to expedite |D\",\n        \"The |c. The advent of the |c |e |d |D\",\n        \"the |c. The |c makes this |e inevitable\",\n        \"the |c. The |3 is of a |2 nature\",\n        \"the |c. This may be due to a lack of a |c.\",\n        \"the |c. Therefore a maximum of flexibility is required\",\n        \"any |c. This can be deduced from the |c\",\n        \"the |c. This may |e flounder on the |c\",\n        \"the |c. This may explain why the |c |e |d |D\",\n        \"the |c. This trend may dissipate due to the |c\"\n    ];\n\n    public static string[] adverbs =\n    [\n        \"substantively\",\n        \"intuitively\",\n        \"uniquely\",\n        \"semantically\",\n        \"necessarily\",\n        \"stringently\",\n        \"precisely\",\n        \"rigorously\",\n        \"broadly\",\n        \"generally\",\n        \"implicitly\",\n        \"inherently\",\n        \"presumably\",\n        \"preeminently\",\n        \"analytically\",\n        \"logically\",\n        \"ontologically\",\n        \"wholly\",\n        \"basically\",\n        \"demonstrably\",\n        \"strictly\",\n        \"functionally\",\n        \"radically\",\n        \"definitely\",\n        \"positively\",\n        \"intrinsically\",\n        \"generally\",\n        \"overwhelmingly\",\n        \"essentially\",\n        \"vitally\",\n        \"operably\",\n        \"fundamentally\",\n        \"significantly\",\n        \"retroactively\",\n        \"retrospectively\",\n        \"globally\",\n        \"clearly\",\n        \"disconcertingly\"\n    ];\n\n    public static string[] verbs =\n    [\n        \"stimulates\",\n        \"spreads\",\n        \"improves\",\n        \"energises\",\n        \"emphasizes\",\n        \"subordinates\",\n        \"posits\",\n        \"perceives\",\n        \"de-stabilizes\",\n        \"Revisits\",\n        \"connotes\",\n        \"signifies\",\n        \"indicates\",\n        \"increases\",\n        \"supports\",\n        \"rationalises\",\n        \"provokes\",\n        \"de-actualises\",\n        \"relocates\",\n        \"yields\",\n        \"implies\",\n        \"designates\",\n        \"reflects\",\n        \"sustains\",\n        \"supplements\",\n        \"represents\",\n        \"re-iterates\",\n        \"juxtaposes\",\n        \"provides\",\n        \"maximizes\",\n        \"identifies\",\n        \"furnishes\",\n        \"supplies\",\n        \"affords\",\n        \"yields\",\n        \"formulates\",\n        \"focuses on\",\n        \"depicts\",\n        \"embodies\",\n        \"exemplifies\",\n        \"expresses\",\n        \"personifies\",\n        \"symbolizes\",\n        \"typifies\",\n        \"replaces\",\n        \"supplants\",\n        \"denotes\",\n        \"depicts\",\n        \"expresses\",\n        \"illustrates\",\n        \"implies\",\n        \"symbolizes\",\n        \"delineates\",\n        \"depicts\",\n        \"illustrates\",\n        \"portrays\",\n        \"clarifies\",\n        \"depicts\",\n        \"interprets\",\n        \"delineates\",\n        \"reflects\",\n        \"evinces\",\n        \"expresses\",\n        \"indicates\",\n        \"manifests\",\n        \"reveals\",\n        \"shows\",\n        \"delineates\",\n        \"represents\",\n        \"anticipates\",\n        \"denotes\",\n        \"identifies\",\n        \"indicates\",\n        \"symbolizes\",\n        \"diminishes\",\n        \"lessens\",\n        \"represses\",\n        \"suppresses\",\n        \"weakens\",\n        \"accentuates\",\n        \"amplifies\",\n        \"heightens\",\n        \"highlights\",\n        \"spotlights\",\n        \"stresses\",\n        \"underlines\",\n        \"underscores\",\n        \"asserts\",\n        \"reiterates\",\n        \"restates\",\n        \"stresses\",\n        \"enhances\",\n        \"amends\",\n        \"translates\",\n        \"specifies\"\n    ];\n\n    public static string[] firstAdjectivePhrases =\n    [\n        \"comprehensive\",\n        \"targeted\",\n        \"realigned\",\n        \"client focussed\",\n        \"best practice\",\n        \"value added\",\n        \"quality driven\",\n        \"basic\",\n        \"principal\",\n        \"central\",\n        \"essential\",\n        \"primary\",\n        \"indicative\",\n        \"continuous\",\n        \"critical\",\n        \"prevalent\",\n        \"preeminent\",\n        \"unequivocal\",\n        \"sanctioned\",\n        \"logical\",\n        \"reproducible\",\n        \"methodological\",\n        \"relative\",\n        \"integrated\",\n        \"fundamental\",\n        \"cohesive\",\n        \"interactive\",\n        \"comprehensive\",\n        \"critical\",\n        \"potential\",\n        \"vibrant\",\n        \"total\",\n        \"additional\",\n        \"secondary\",\n        \"primary\",\n        \"heuristic\",\n        \"complex\",\n        \"pivotal\",\n        \"quasi-effectual\",\n        \"dominant\",\n        \"characteristic\",\n        \"ideal\",\n        \"doctrine of the\",\n        \"key\",\n        \"independent\",\n        \"deterministic\",\n        \"assumptions about the\",\n        \"heuristic\",\n        \"crucial\",\n        \"meaningful\",\n        \"implicit\",\n        \"analogous\",\n        \"explicit\",\n        \"integrational\",\n        \"non-viable\",\n        \"directive\",\n        \"consultative\",\n        \"collaborative\",\n        \"delegative\",\n        \"tentative\",\n        \"privileged\",\n        \"common\",\n        \"hypothetical\",\n        \"metathetical\",\n        \"marginalised\",\n        \"systematised\",\n        \"evolutional\",\n        \"parallel\",\n        \"functional\",\n        \"responsive\",\n        \"optical\",\n        \"inductive\",\n        \"objective\",\n        \"synchronised\",\n        \"compatible\",\n        \"prominent\",\n        \"three-phase\",\n        \"two-phase\",\n        \"balanced\",\n        \"legitimate\",\n        \"subordinated\",\n        \"complementary\",\n        \"proactive\",\n        \"truly global\",\n        \"interdisciplinary\",\n        \"homogeneous\",\n        \"hierarchical\",\n        \"technical\",\n        \"alternative\",\n        \"strategic\",\n        \"environmental\",\n        \"closely monitored\",\n        \"three-tier\",\n        \"inductive\",\n        \"fully integrated\",\n        \"fully interactive\",\n        \"ad-hoc\",\n        \"ongoing\",\n        \"proactive\",\n        \"dynamic\",\n        \"flexible\",\n        \"verifiable\",\n        \"falsifiable\",\n        \"transitional\",\n        \"mechanism-independent\",\n        \"synergistic\",\n        \"high-level\"\n    ];\n\n    public static string[] secondAdjectivePhrases =\n    [\n        \"fast-track\",\n        \"transparent\",\n        \"results-driven\",\n        \"subsystem\",\n        \"test\",\n        \"configuration\",\n        \"mission\",\n        \"functional\",\n        \"referential\",\n        \"numinous\",\n        \"paralyptic\",\n        \"radical\",\n        \"paratheoretical\",\n        \"consistent\",\n        \"macro\",\n        \"interpersonal\",\n        \"auxiliary\",\n        \"empirical\",\n        \"theoretical\",\n        \"corroborated\",\n        \"management\",\n        \"organizational\",\n        \"monitored\",\n        \"consensus\",\n        \"reciprocal\",\n        \"unprejudiced\",\n        \"digital\",\n        \"logic\",\n        \"transitional\",\n        \"incremental\",\n        \"equivalent\",\n        \"universal\",\n        \"sub-logical\",\n        \"hypothetical\",\n        \"conjectural\",\n        \"conceptual\",\n        \"empirical\",\n        \"spatio-temporal\",\n        \"third-generation\",\n        \"epistemological\",\n        \"diffusible\",\n        \"specific\",\n        \"non-referent\",\n        \"overriding\",\n        \"politico-strategical\",\n        \"economico-social\",\n        \"on-going\",\n        \"extrinsic\",\n        \"intrinsic\",\n        \"multi-media\",\n        \"integrated\",\n        \"effective\",\n        \"overall\",\n        \"principal\",\n        \"prime\",\n        \"major\",\n        \"empirical\",\n        \"definitive\",\n        \"explicit\",\n        \"determinant\",\n        \"precise\",\n        \"cardinal\",\n        \"principal\",\n        \"affirming\",\n        \"harmonizing\",\n        \"central\",\n        \"essential\",\n        \"primary\",\n        \"indicative\",\n        \"mechanistic\",\n        \"continuous\",\n        \"critical\",\n        \"prevalent\",\n        \"preeminent\",\n        \"unequivocal\",\n        \"sanctioned\",\n        \"logical\",\n        \"reproducible\",\n        \"methodological\",\n        \"relative\",\n        \"integrated\",\n        \"fundamental\",\n        \"cohesive\",\n        \"interactive\",\n        \"comprehensive\",\n        \"critical\",\n        \"potential\",\n        \"total\",\n        \"additional\",\n        \"secondary\",\n        \"primary\",\n        \"heuristic\",\n        \"complex\",\n        \"pivotal\",\n        \"quasi-effectual\",\n        \"dominant\",\n        \"characteristic\",\n        \"ideal\",\n        \"independent\",\n        \"deterministic\",\n        \"heuristic\",\n        \"crucial\",\n        \"meaningful\",\n        \"implicit\",\n        \"analogous\",\n        \"explicit\",\n        \"integrational\",\n        \"directive\",\n        \"collaborative\",\n        \"entative\",\n        \"privileged\",\n        \"common\",\n        \"hypothetical\",\n        \"metathetical\",\n        \"marginalised\",\n        \"systematised\",\n        \"evolutional\",\n        \"parallel\",\n        \"functional\",\n        \"responsive\",\n        \"optical\",\n        \"inductive\",\n        \"objective\",\n        \"synchronised\",\n        \"compatible\",\n        \"prominent\",\n        \"legitimate\",\n        \"subordinated\",\n        \"complementary\",\n        \"homogeneous\",\n        \"hierarchical\",\n        \"alternative\",\n        \"environmental\",\n        \"inductive\",\n        \"transitional\",\n        \"Philosophical\",\n        \"latent\",\n        \"conscious\",\n        \"practical\",\n        \"temperamental\",\n        \"impersonal\",\n        \"personal\",\n        \"subjective\",\n        \"objective\",\n        \"dynamic\",\n        \"inclusive\",\n        \"paradoxical\",\n        \"pure\",\n        \"central\",\n        \"psychic\",\n        \"associative\",\n        \"intuitive\",\n        \"free-floating\",\n        \"empirical\",\n        \"superficial\",\n        \"predominant\",\n        \"actual\",\n        \"mutual\",\n        \"arbitrary\",\n        \"inevitable\",\n        \"immediate\",\n        \"affirming\",\n        \"functional\",\n        \"referential\",\n        \"numinous\",\n        \"paralyptic\",\n        \"radical\",\n        \"paratheoretical\",\n        \"consistent\",\n        \"interpersonal\",\n        \"auxiliary\",\n        \"empirical\",\n        \"theoretical\",\n        \"reciprocal\",\n        \"unprejudiced\",\n        \"transitional\",\n        \"incremental\",\n        \"equivalent\",\n        \"universal\",\n        \"sub-logical\",\n        \"hypothetical\",\n        \"conjectural\",\n        \"conceptual\",\n        \"empirical\",\n        \"spatio-temporal\",\n        \"epistemological\",\n        \"diffusible\",\n        \"specific\",\n        \"non-referent\",\n        \"overriding\",\n        \"politico-strategical\",\n        \"economico-social\",\n        \"on-going\",\n        \"extrinsic\",\n        \"intrinsic\",\n        \"effective\",\n        \"principal\",\n        \"prime\",\n        \"major\",\n        \"empirical\",\n        \"definitive\",\n        \"explicit\",\n        \"determinant\",\n        \"precise\",\n        \"cardinal\",\n        \"geometric\",\n        \"naturalistic\",\n        \"linear\",\n        \"distinctive\",\n        \"phylogenetic\",\n        \"ethical\",\n        \"theoretical\",\n        \"economic\",\n        \"aesthetic\",\n        \"personal\",\n        \"social\",\n        \"discordant\",\n        \"political\",\n        \"religious\",\n        \"artificial\",\n        \"collective\",\n        \"permanent\",\n        \"metaphysical\",\n        \"organic\",\n        \"mensurable\",\n        \"expressive\",\n        \"governing\",\n        \"subjective\",\n        \"empathic\",\n        \"imaginative\",\n        \"ethical\",\n        \"expressionistic\",\n        \"resonant\",\n        \"vibrant\"\n    ];\n\n    public static string[] nounPhrases =\n    [\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"|o\",\n        \"development\",\n        \"program\",\n        \"baseline\",\n        \"reconstruction\",\n        \"discordance\",\n        \"monologism\",\n        \"substructure\",\n        \"legitimisation\",\n        \"principle\",\n        \"constraints\",\n        \"management option\",\n        \"strategy\",\n        \"transposition\",\n        \"auto-interruption\",\n        \"derivation\",\n        \"option\",\n        \"flexibility\",\n        \"proposal\",\n        \"formulation\",\n        \"item\",\n        \"issue\",\n        \"capability\",\n        \"mobility\",\n        \"programming\",\n        \"concept\",\n        \"time-phase\",\n        \"dimension\",\n        \"faculty\",\n        \"capacity\",\n        \"proficiency\",\n        \"reciprocity\",\n        \"fragmentation\",\n        \"consolidation\",\n        \"projection\",\n        \"interface\",\n        \"hardware\",\n        \"contingency\",\n        \"dialog\",\n        \"dichotomy\",\n        \"concept\",\n        \"parameter\",\n        \"algorithm\",\n        \"milieu\",\n        \"terms of reference\",\n        \"item\",\n        \"vibrancy\",\n        \"reaction\",\n        \"casuistry\",\n        \"theme\",\n        \"teleology\",\n        \"symbolism\",\n        \"resource allocation\",\n        \"certification project\",\n        \"functionality\",\n        \"specification\",\n        \"matrix\",\n        \"rationalization\",\n        \"consolidation\",\n        \"remediation\",\n        \"facilitation\",\n        \"simulation\",\n        \"evaluation\",\n        \"competence\",\n        \"familiarisation\",\n        \"transformation\",\n        \"apriorism\",\n        \"conventionalism\",\n        \"verification\",\n        \"functionality\",\n        \"component\",\n        \"factor\",\n        \"antitheseis\",\n        \"desiderata\",\n        \"metaphor\",\n        \"metalanguage\",\n        \"globalisation\",\n        \"initiative\",\n        \"projection\",\n        \"partnership\",\n        \"priority\",\n        \"service\",\n        \"support\",\n        \"best-practice\",\n        \"change\",\n        \"delivery\",\n        \"funding\",\n        \"resources\"\n    ];\n\n    public static string[] cliches =\n    [\n        \"|o of |o\",\n        \"|o of |o\",\n        \"|o of |o\",\n        \"|o of |o\",\n        \"|o of |o\",\n        \"|o of |o\",\n        \"|o of |o\",\n        \"|o of |o\",\n        \"development strategy\",\n        \"decision support\",\n        \"fourth-generation environment\",\n        \"application systems\",\n        \"feedback process\",\n        \"function hierarchy analysis\",\n        \"structured business analysis\",\n        \"base information\",\n        \"final consolidation\",\n        \"design criteria\",\n        \"iterative design process\",\n        \"common interface\",\n        \"ongoing support\",\n        \"relational flexibility\",\n        \"referential integrity\",\n        \"strategic framework\",\n        \"dynamic systems strategy\",\n        \"functional decomposition\",\n        \"operational situation\",\n        \"individual action plan\",\n        \"key behavioural skills\",\n        \"set of constraints\",\n        \"structure plan\",\n        \"contingency planning\",\n        \"resource planning\",\n        \"participant feedback\",\n        \"referential function\",\n        \"passive result\",\n        \"aims and constraints\",\n        \"strategic opportunity\",\n        \"development of systems resource\",\n        \"major theme of the |c\",\n        \"technical coherence\",\n        \"cost-effective application\",\n        \"high leverage area\",\n        \"key leveraging technology\",\n        \"known strategic opportunity\",\n        \"internal resource capability\",\n        \"interactive concern-control system\",\n        \"key technology\",\n        \"prime objective\",\n        \"key area of opportunity\",\n        \"present infrastructure\",\n        \"enabling technology\",\n        \"key objective\",\n        \"areas of particular expertise\",\n        \"overall business benefit\",\n        \"competitive practice and technology\",\n        \"flexible manufacturing system\",\n        \"adequate resource level\",\n        \"|e sophisticated hardware\",\n        \"external agencies\",\n        \"anticipated fourth-generation equipment\",\n        \"maintenance of current standards\",\n        \"adequate development of any necessary measures\",\n        \"critical component in the\",\n        \"active process of information gathering\",\n        \"general milestones\",\n        \"adequate timing control\",\n        \"quantitative and discrete targets\",\n        \"subsystem compatibility testing\",\n        \"structural design, based on system engineering concepts\",\n        \"key principles behind the |c\",\n        \"constraints of manpower resourcing\",\n        \"necessity for budgetary control\",\n        \"discipline of resource planning\",\n        \"diverse hardware environment\",\n        \"product lead times\",\n        \"access to corporate systems\",\n        \"overall certification project\",\n        \"commitment to industry standards\",\n        \"general increase in office efficiency\",\n        \"preliminary qualification limit\",\n        \"calculus of consequence\",\n        \"corollary\",\n        \"reverse image\",\n        \"logical data structure\",\n        \"philosophy of commonality and standardization\",\n        \"impact on overall performance\",\n        \"multilingual cynicism\",\n        \"functional synergy\",\n        \"backbone of connectivity\",\n        \"integrated set of requirements\",\n        \"ongoing |3 philosophy\",\n        \"strategic requirements\",\n        \"integration of |c with strategic initiatives\",\n        \"established analysis and design methodology\",\n        \"corporate information exchange\",\n        \"separate roles and significances of the |c\",\n        \"formal strategic direction\",\n        \"integrated set of facilities\",\n        \"appreciation of vested responsibilities\",\n        \"potential globalisation candidate\",\n        \"tentative priority\",\n        \"performance objectives\",\n        \"global business practice\",\n        \"functionality matrix\",\n        \"priority sequence\",\n        \"system elements\",\n        \"life cycle phase\",\n        \"operations scenario\",\n        \"total system rationale\",\n        \"conceptual baseline\",\n        \"incremental delivery\",\n        \"requirements hierarchy\",\n        \"functional baseline\",\n        \"system critical design\",\n        \"capability constraint\",\n        \"matrix of supporting elements\",\n        \"lead group concept\",\n        \"dominant factor\",\n        \"modest correction\",\n        \"element of volatility\",\n        \"inevitability of amelioration\",\n        \"attenuation of subsequent feedback\",\n        \"chance of entropy within the system\",\n        \"associated supporting element\",\n        \"intrinsic homeostasis within the metasystem\",\n        \"characterization of specific information\",\n        \"organization structure\",\n        \"constant flow of effective information\",\n        \"key business objectives\",\n        \"life cycle\",\n        \"large portion of the co-ordination of communication\",\n        \"corporate procedure\",\n        \"proposed scenario\"\n    ];\n\n    public static string[] prefixes =\n    [\n        \"the\",\n        \"the\",\n        \"the\",\n        \"the\",\n        \"the\",\n        \"the\",\n        \"the\",\n        \"the\",\n        \"the\",\n        \"any\",\n        \"any\",\n        \"what might be described as the\",\n        \"what amounts to the\",\n        \"a large proportion of the\",\n        \"what has been termed the\",\n        \"a unique facet of the\",\n        \"a significant aspect of the\",\n        \"the all-inclusiveness of the\",\n        \"any inherent dangers of the\",\n        \"the obvious necessity for the\",\n        \"the basis of any\",\n        \"the basis of the\",\n        \"any formalization of the\",\n        \"the quest for the\",\n        \"any significant enhancements in the\",\n        \"the underlying surrealism of the\",\n        \"the feasibility of the\",\n        \"the requirements of\",\n        \"an implementation strategy for\",\n        \"any fundamental dichotomies of the\",\n        \"a concept of what we have come to call the\",\n        \"the infrastructure of the\",\n        \"a proven solution to the\",\n        \"a percentage of the\",\n        \"a proportion of the\",\n        \"an issue of the\",\n        \"any consideration of the\",\n        \"a factor within the\",\n        \"the adequate functionality of the\",\n        \"the principle of the\",\n        \"the constraints of the\",\n        \"a realization the importance of the\",\n        \"the criterion of\",\n        \"a unique facet of\",\n        \"the consolidation of the\",\n        \"a preponderance of the\"\n    ];\n\n    public static string[] artyNouns =\n    [\n        \"discordance\",\n        \"legitimisation\",\n        \"principle\",\n        \"transposition\",\n        \"dimension\",\n        \"reciprocity\",\n        \"fragmentation\",\n        \"projection\",\n        \"dichotomy\",\n        \"concept\",\n        \"theme\",\n        \"teleology\",\n        \"symbolism\",\n        \"transformation\",\n        \"antithesis\",\n        \"desiderata\",\n        \"metaphor\",\n        \"metalanguage\",\n        \"reciprocity\",\n        \"consciousness\",\n        \"feeling\",\n        \"fact\",\n        \"individuality\",\n        \"comparison\",\n        \"awareness\",\n        \"expression\",\n        \"appreciation\",\n        \"correspondence\",\n        \"interpretation\",\n        \"interpolation\",\n        \"interpenetration\",\n        \"statement\",\n        \"emphasis\",\n        \"feeling\",\n        \"empathy\",\n        \"sensibility\",\n        \"insight\",\n        \"attitude\",\n        \"consciousness\",\n        \"absorption\",\n        \"self-forgetfulness\",\n        \"parallelism\",\n        \"classification\",\n        \"evidence\",\n        \"aspect\",\n        \"distinction\",\n        \"idealism\",\n        \"naturalism\",\n        \"disposition\",\n        \"apprehension\",\n        \"morality\",\n        \"object\",\n        \"idealism\",\n        \"quality\",\n        \"romanticism\",\n        \"realism\",\n        \"idealism\",\n        \"quality\",\n        \"transposition\",\n        \"determinism\",\n        \"attitude\",\n        \"terminology\",\n        \"individuality\",\n        \"category\",\n        \"integration\",\n        \"concept\",\n        \"phenomenon\",\n        \"element\",\n        \"analogy\",\n        \"perception\",\n        \"principle\",\n        \"aesthetic\",\n        \"spirituality\",\n        \"aspiration\",\n        \"quality\",\n        \"disposition\",\n        \"subjectivism\",\n        \"objectivism\",\n        \"contemplation\",\n        \"vivacity\",\n        \"feeling\",\n        \"empathy\",\n        \"value\",\n        \"sensation\",\n        \"causation\",\n        \"affectability\",\n        \"impulse\",\n        \"attitude\",\n        \"sensibility\",\n        \"material\",\n        \"aspect\",\n        \"problem\",\n        \"implication\",\n        \"hierarchy\",\n        \"process\",\n        \"provenance\",\n        \"discord\",\n        \"milieu\"\n    ];\n\n    public static string[] surnames =\n    [\n        \"Bennet\",\n        \"Blotchet-Halls\",\n        \"Carson\",\n        \"Clarke\",\n        \"DeFrance\",\n        \"del Castillo\",\n        \"Dull\",\n        \"Green\",\n        \"Greene\",\n        \"Gringlesby\",\n        \"Hunter\",\n        \"Karsen\",\n        \"Locksley\",\n        \"MacFeather\",\n        \"McBadden\",\n        \"O'Leary\",\n        \"Panteley\",\n        \"Poel\",\n        \"Powys-Lybbe\",\n        \"Smith\",\n        \"Straight\",\n        \"Stringer\",\n        \"White\",\n        \"Yokomoto\"\n    ];\n\n    public static string[] forenames =\n    [\n        \"Abraham\",\n        \"Reginald\",\n        \"Cheryl\",\n        \"Michel\",\n        \"Innes\",\n        \"Ann\",\n        \"Marjorie\",\n        \"Matthew\",\n        \"Mark\",\n        \"Luke\",\n        \"John\",\n        \"Burt\",\n        \"Lionel\",\n        \"Humphrey\",\n        \"Andrew\",\n        \"Jenny\",\n        \"Sheryl\",\n        \"Livia\",\n        \"Charlene\",\n        \"Winston\",\n        \"Heather\",\n        \"Michael\",\n        \"Sylvia\",\n        \"Albert\",\n        \"Anne\",\n        \"Meander\",\n        \"Dean\",\n        \"Dirk\",\n        \"Desmond\",\n        \"Akiko\"\n    ];\n\n    public static string[] buzzPhrases =\n    [\n        \"|1 |2 |3\",\n        \"|1 |2 |3\",\n        \"|2 |3\",\n        \"|1 |2 |3\",\n        \"|1 |2 |3\",\n        \"|4\",\n        \"|4\"\n    ];\n\n    public static string[] cardinalSequences =\n    [\n        \"one\",\n        \"two\",\n        \"three\",\n        \"four\",\n        \"five\",\n        \"six\",\n        \"seven\",\n        \"eight\",\n        \"nine\",\n        \"ten\",\n        \"eleven\",\n        \"twelve\"\n    ];\n\n    public static string[] ordinalSequences =\n    [\n        \"first\",\n        \"second\",\n        \"third\",\n        \"fourth\",\n        \"fifth\"\n    ];\n\n    public static string[] maybeHeading =\n    [\n        \"\",\n        \"\",\n        \"The |uc.\",\n        \"\"\n    ];\n\n    public static bool[] maybeParagraph =\n    [\n        false,\n        false,\n        true,\n        false\n    ];\n}"
  },
  {
    "path": "src/WaffleGenerator/Extensions.cs",
    "content": "static class Extensions\n{\n    public static bool EndsWith(this StringBuilder builder, params char[] chars)\n    {\n        for (var i = builder.Length - 1; i != -1; i--)\n        {\n            var builderChar = builder[i];\n            if (char.IsWhiteSpace(builderChar))\n            {\n                continue;\n            }\n\n            foreach (var c in chars)\n            {\n                if (c == builderChar)\n                {\n                    return true;\n                }\n            }\n\n            return false;\n        }\n\n        return false;\n    }\n}"
  },
  {
    "path": "src/WaffleGenerator/Heading.cs",
    "content": "﻿record Heading(string Quote, string Cite, string Buzz, string Title);"
  },
  {
    "path": "src/WaffleGenerator/InnerEngine.cs",
    "content": "using System.Globalization;\n\nclass InnerEngine(Func<int, int> random)\n{\n    int cardinalSequence;\n    int ordinalSequence;\n    string? title;\n    string? quote;\n    string? cite;\n    string? buzz;\n    List<Paragraph> paragraphs = [];\n\n    void EvaluateRandomPhrase(string[] phrases, StringBuilder output)\n    {\n        var index = random(phrases.Length);\n        EvaluatePhrase(phrases[index], output);\n    }\n\n    void EvaluatePhrase(string phrase, StringBuilder result)\n    {\n        for (var i = 0; i < phrase.Length; i++)\n        {\n            if (phrase[i] == '|' && i + 1 < phrase.Length)\n            {\n                i++;\n\n                if (phrase[i] == 'u' && i + 1 < phrase.Length)\n                {\n                    var escape = new StringBuilder();\n                    i++;\n                    EvaluateChar(phrase[i], escape);\n                    result.Append(TitleCaseWords(escape.ToString()));\n                }\n                else\n                {\n                    EvaluateChar(phrase[i], result);\n                }\n            }\n            else\n            {\n                if (i == 0 && HasSentenceEnded(result))\n                {\n                    result.Append(char.ToUpper(phrase[i]));\n                }\n                else\n                {\n                    result.Append(phrase[i]);\n                }\n            }\n        }\n    }\n\n    void EvaluateChar(char c, StringBuilder builder)\n    {\n        switch (c)\n        {\n            case 'a':\n                EvaluateCardinalSequence(builder);\n                break;\n            case 'b':\n                EvaluateOrdinalSequence(builder);\n                break;\n            case 'c':\n                EvaluateRandomPhrase(Constants.buzzPhrases, builder);\n                break;\n            case 'd':\n                EvaluateRandomPhrase(Constants.verbs, builder);\n                break;\n            case 'e':\n                EvaluateRandomPhrase(Constants.adverbs, builder);\n                break;\n            case 'f':\n                EvaluateRandomPhrase(Constants.forenames, builder);\n                break;\n            case 's':\n                EvaluateRandomPhrase(Constants.surnames, builder);\n                break;\n            case 'o':\n                EvaluateRandomPhrase(Constants.artyNouns, builder);\n                break;\n            case 'y':\n                RandomDate(builder);\n                break;\n            case 'h':\n                EvaluateRandomPhrase(Constants.prefixes, builder);\n                break;\n            case 'A':\n                EvaluateRandomPhrase(Constants.preamblePhrases, builder);\n                break;\n            case 'B':\n                EvaluateRandomPhrase(Constants.subjectPhrases, builder);\n                break;\n            case 'C':\n                EvaluateRandomPhrase(Constants.verbPhrases, builder);\n                break;\n            case 'D':\n                EvaluateRandomPhrase(Constants.objectPhrases, builder);\n                break;\n            case '1':\n                EvaluateRandomPhrase(Constants.firstAdjectivePhrases, builder);\n                break;\n            case '2':\n                EvaluateRandomPhrase(Constants.secondAdjectivePhrases, builder);\n                break;\n            case '3':\n                EvaluateRandomPhrase(Constants.nounPhrases, builder);\n                break;\n            case '4':\n                EvaluateRandomPhrase(Constants.cliches, builder);\n                break;\n            case 't':\n                builder.Append(title);\n                break;\n        }\n    }\n\n    static bool HasSentenceEnded(StringBuilder result) =>\n        result.EndsWith('.', '>');\n\n    void EvaluateCardinalSequence(StringBuilder output)\n    {\n        if (cardinalSequence >= Constants.cardinalSequences.Length)\n        {\n            cardinalSequence = 0;\n        }\n\n        output.Append(Constants.cardinalSequences[cardinalSequence++]);\n    }\n\n    void EvaluateOrdinalSequence(StringBuilder output)\n    {\n        if (ordinalSequence >= Constants.ordinalSequences.Length)\n        {\n            ordinalSequence = 0;\n        }\n\n        output.Append(Constants.ordinalSequences[ordinalSequence++]);\n    }\n\n    void RandomDate(StringBuilder output) =>\n        output.AppendFormat(\"{0:04u}\", DateTime.Now.Year - random(31));\n\n    static string TitleCaseWords(string input) =>\n        CultureInfo.CurrentCulture.TextInfo.ToTitleCase(input);\n\n    public WaffleContent GetContent(int paragraphsCount, bool includeHeading)\n    {\n        cardinalSequence = 0;\n        ordinalSequence = 0;\n        Heading? heading = null;\n        if (includeHeading)\n        {\n            title = BuildTitle();\n            var quoteBuilder = new StringBuilder();\n            EvaluatePhrase(\"|A |B |C |t\", quoteBuilder);\n            quote = quoteBuilder.ToString();\n            var citeBuilder = new StringBuilder();\n            EvaluatePhrase(\"|f |s in The Journal of the |uc (|uy)\", citeBuilder);\n            cite = citeBuilder.ToString();\n            var buzzBuilder = new StringBuilder();\n            EvaluatePhrase(\"|c.\", buzzBuilder);\n            buzz = buzzBuilder.ToString();\n            heading = new(quote, cite, buzz, title);\n        }\n\n        for (var i = 0; i < paragraphsCount; i++)\n        {\n            string? paragraphHeading = null;\n            if (i != 0)\n            {\n                var headingBuilder = new StringBuilder();\n                EvaluateRandomPhrase(Constants.maybeHeading, headingBuilder);\n                paragraphHeading = headingBuilder.ToString();\n                if (string.IsNullOrWhiteSpace(paragraphHeading))\n                {\n                    paragraphHeading = null;\n                }\n            }\n\n            var bodyBuilder = new StringBuilder();\n            EvaluatePhrase(\"|A |B |C |D.\", bodyBuilder);\n            var paragraph = new Paragraph(paragraphHeading, bodyBuilder.ToString());\n            paragraphs.Add(paragraph);\n        }\n\n        return new(heading, paragraphs);\n    }\n\n    public string BuildTitle()\n    {\n        var builder = new StringBuilder();\n        EvaluatePhrase(\"the |o of |2 |o\", builder);\n\n        return TitleCaseWords(builder.ToString());\n    }\n}"
  },
  {
    "path": "src/WaffleGenerator/Paragraph.cs",
    "content": "﻿record Paragraph(string? Heading, string Body);\n"
  },
  {
    "path": "src/WaffleGenerator/WaffleContent.cs",
    "content": "﻿record WaffleContent(Heading? Heading, List<Paragraph> Paragraphs);"
  },
  {
    "path": "src/WaffleGenerator/WaffleEngine.cs",
    "content": "namespace WaffleGenerator;\n\npublic static class WaffleEngine\n{\n    public static string Html(int seed, int paragraphs, bool includeHeading, bool includeHeadAndBody) =>\n        Html(new Random(seed), paragraphs, includeHeading, includeHeadAndBody);\n\n    public static string Html(int paragraphs, bool includeHeading, bool includeHeadAndBody) =>\n        Html(new Random(), paragraphs, includeHeading, includeHeadAndBody);\n\n    public static string Html(Random random, int paragraphs, bool includeHeading, bool includeHeadAndBody) =>\n        Html(_ => random.Next(0, _), paragraphs, includeHeading, includeHeadAndBody);\n\n    public static string Html(Func<int, int> random, int paragraphs, bool includeHeading, bool includeHeadAndBody)\n    {\n        var builder = new StringBuilder();\n        var innerEngine = new InnerEngine(random);\n        var waffleContent = innerEngine.GetContent(paragraphs, includeHeading);\n\n        var heading = waffleContent.Heading;\n        if (heading != null)\n        {\n            if (includeHeadAndBody)\n            {\n                builder.AppendLine(\n                    $\"\"\"\n                     <html>\n                     <head>\n                     <title>{heading.Title}</title>\n                     </head>\n                     <body>\n                     \"\"\");\n            }\n\n            builder.AppendLine(\n                $\"\"\"\n                 <h1>{heading.Title}</h1>\n                 <blockquote>'{heading.Quote}'<br>\n                 <cite>{heading.Cite}</cite></blockquote>\n                 <h2>{heading.Buzz}</h2>\n                 \"\"\");\n        }\n\n        foreach (var paragraph in waffleContent.Paragraphs)\n        {\n            builder.AppendLine(\"<p>\");\n            if (paragraph.Heading != null)\n            {\n                builder.AppendLine($\"<h2>{paragraph.Heading}</h2>\");\n            }\n\n            builder.AppendLine(paragraph.Body);\n            builder.AppendLine(\"</p>\");\n        }\n\n        if (includeHeadAndBody)\n        {\n            builder.AppendLine(\"</body>\");\n            builder.Append(\"</html>\");\n        }\n\n        return builder.ToString();\n    }\n\n    public static string Title() =>\n        Title(new Random());\n\n    public static string Title(int seed) =>\n        Title(new Random(seed));\n\n    public static string Title(Random random) =>\n        Title(_ => random.Next(0, _));\n\n    public static string Title(Func<int, int> random)\n    {\n        var innerEngine = new InnerEngine(random);\n        return innerEngine.BuildTitle();\n    }\n\n    public static string Markdown(int seed, int paragraphs, bool includeHeading) =>\n        Markdown(new Random(seed), paragraphs, includeHeading);\n\n    public static string Markdown(int paragraphs, bool includeHeading) =>\n        Markdown(new Random(), paragraphs, includeHeading);\n\n    public static string Markdown(Random random, int paragraphs, bool includeHeading) =>\n        Markdown(_ => random.Next(0, _), paragraphs, includeHeading);\n\n    public static string Markdown(Func<int, int> random, int paragraphs, bool includeHeading)\n    {\n        var builder = new StringBuilder();\n        var innerEngine = new InnerEngine(random);\n        var waffleContent = innerEngine.GetContent(paragraphs, includeHeading);\n\n        var heading = waffleContent.Heading;\n        if (heading != null)\n        {\n            builder.AppendLine(\n                $\"\"\"\n                 # {heading.Title}\n\n                  > {heading.Quote}\n\n                  * {heading.Cite}\n\n                 ## {heading.Buzz}\n\n                 \"\"\");\n        }\n\n        foreach (var paragraph in waffleContent.Paragraphs)\n        {\n            if (paragraph.Heading != null)\n            {\n                builder.AppendLine($\"## {paragraph.Heading}\");\n                builder.AppendLine();\n            }\n\n            builder.AppendLine(paragraph.Body);\n            builder.AppendLine();\n        }\n\n        return builder.ToString();\n    }\n\n    public static string Text(int seed, int paragraphs, bool includeHeading) =>\n        Text(new Random(seed), paragraphs, includeHeading);\n\n    public static string Text(int paragraphs, bool includeHeading) =>\n        Text(new Random(), paragraphs, includeHeading);\n\n    public static string Text(Random random, int paragraphs, bool includeHeading) =>\n        Text(_ => random.Next(0, _), paragraphs, includeHeading);\n\n    public static string Text(Func<int, int> random, int paragraphs, bool includeHeading)\n    {\n        var builder = new StringBuilder();\n        var innerEngine = new InnerEngine(random);\n        var waffleContent = innerEngine.GetContent(paragraphs, includeHeading);\n        var heading = waffleContent.Heading;\n        if (heading != null)\n        {\n            builder.AppendLine(\n                $\"\"\"\n                 {heading.Title}\n\n                 '{heading.Quote}'\n\n                  - {heading.Cite}\n\n                 {heading.Buzz}\n\n                 \"\"\");\n        }\n\n        var lastIndex = waffleContent.Paragraphs.Count - 1;\n        for (var index = 0; index < waffleContent.Paragraphs.Count; index++)\n        {\n            var paragraph = waffleContent.Paragraphs[index];\n            if (paragraph.Heading != null)\n            {\n                builder.AppendLine(paragraph.Heading);\n                builder.AppendLine();\n            }\n\n            builder.AppendLine(paragraph.Body);\n            if (index != lastIndex)\n            {\n                builder.AppendLine();\n            }\n        }\n\n        return builder.ToString();\n    }\n}"
  },
  {
    "path": "src/WaffleGenerator/WaffleGenerator.csproj",
    "content": "<Project Sdk=\"Microsoft.NET.Sdk\">\n  <PropertyGroup>\n    <TargetFrameworks>net8.0;net9.0;net10.0;net48</TargetFrameworks>\n    <Description>Produces of text which, on first glance, looks like real, ponderous, prose; replete with clichés.</Description>\n  </PropertyGroup>\n  <ItemGroup>\n    <PackageReference Include=\"Polyfill\" PrivateAssets=\"all\" />\n    <PackageReference Include=\"ProjectDefaults\" PrivateAssets=\"all\" />\n    <PackageReference Include=\"Microsoft.Sbom.Targets\" PrivateAssets=\"all\" Condition=\"'$(CI)' == 'true'\" />\n  </ItemGroup>\n</Project>"
  },
  {
    "path": "src/WaffleGenerator.Bogus/Waffle.cs",
    "content": "﻿using WaffleGenerator;\n\nnamespace Bogus;\n\npublic class Waffle : DataSet\n{\n    public string Html(int paragraphs = 1, bool includeHeading = true, bool includeHeadAndBody = true) =>\n        WaffleEngine.Html(RandomNumber, paragraphs, includeHeading, includeHeadAndBody);\n\n    public string Text(int paragraphs = 1, bool includeHeading = true) =>\n        WaffleEngine.Text(RandomNumber, paragraphs, includeHeading);\n\n    public string Markdown(int paragraphs = 1, bool includeHeading = true) =>\n        WaffleEngine.Markdown(RandomNumber, paragraphs, includeHeading);\n\n    public string Title() =>\n        WaffleEngine.Title(RandomNumber);\n\n    int RandomNumber(int i) =>\n        Random.Number(i - 1);\n}"
  },
  {
    "path": "src/WaffleGenerator.Bogus/WaffleGenerator.Bogus.csproj",
    "content": "<Project Sdk=\"Microsoft.NET.Sdk\">\n  <PropertyGroup>\n    <TargetFrameworks>net9.0;net10.0;net48</TargetFrameworks>\n    <Description>Produces Bogus (https://github.com/bchavez/Bogus) text which, on first glance, looks like real, ponderous, prose; replete with clichés.</Description>\n    <DefineConstants>$(DefineConstants);Bogus</DefineConstants>\n  </PropertyGroup>\n  <ItemGroup>\n    <PackageReference Include=\"Bogus\" />\n    <ProjectReference Include=\"..\\WaffleGenerator\\WaffleGenerator.csproj\" />\n    <PackageReference Include=\"ProjectDefaults\" PrivateAssets=\"all\" />\n  </ItemGroup>\n</Project>"
  },
  {
    "path": "src/WaffleGenerator.Bogus/WaffleGeneratorExtensions.cs",
    "content": "﻿using Bogus.Premium;\n\nnamespace Bogus;\n\npublic static class WaffleExtensions\n{\n    public static Waffle Waffle(this Faker faker) =>\n        ContextHelper.GetOrSet(faker, () => new Waffle());\n\n    public static string WaffleHtml(this Faker faker, int paragraphs = 1, bool includeHeading = true) =>\n        faker\n            .Waffle()\n            .Html(paragraphs, includeHeading);\n\n    public static string WaffleTitle(this Faker faker) =>\n        faker\n            .Waffle()\n            .Title();\n\n    public static string WaffleText(this Faker faker, int paragraphs = 1, bool includeHeading = true) =>\n        faker\n            .Waffle()\n            .Text(paragraphs, includeHeading);\n\n    public static string WaffleMarkdown(this Faker faker, int paragraphs = 1, bool includeHeading = true) =>\n        faker\n            .Waffle()\n            .Markdown(paragraphs, includeHeading);\n}"
  },
  {
    "path": "src/WaffleGenerator.slnx",
    "content": "﻿<Solution>\n  <Folder Name=\"/Solution Items/\">\n    <File Path=\"../.gitattributes\" />\n    <File Path=\"appveyor.yml\" />\n    <File Path=\"Directory.Build.props\" />\n    <File Path=\"Directory.Packages.props\" />\n  </Folder>\n  <Project Path=\"Tests/Tests.csproj\" />\n  <Project Path=\"WaffleGenerator.Bogus/WaffleGenerator.Bogus.csproj\" />\n  <Project Path=\"WaffleGenerator/WaffleGenerator.csproj\" />\n</Solution>"
  },
  {
    "path": "src/WaffleGenerator.slnx.DotSettings",
    "content": "﻿<wpf:ResourceDictionary xml:space=\"preserve\" xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\" xmlns:s=\"clr-namespace:System;assembly=mscorlib\" xmlns:ss=\"urn:shemas-jetbrains-com:settings-storage-xaml\" xmlns:wpf=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\">\n\t<s:String x:Key=\"/Default/Environment/InjectedLayers/FileInjectedLayer/=BC2D76E54BBA65499DDED823A15FC688/RelativePath/@EntryValue\">..\\Shared.sln.DotSettings</s:String>\n\t<s:Boolean x:Key=\"/Default/Environment/InjectedLayers/FileInjectedLayer/=BC2D76E54BBA65499DDED823A15FC688/@KeyIndexDefined\">True</s:Boolean>\n\t<s:Boolean x:Key=\"/Default/Environment/InjectedLayers/InjectedLayerCustomization/=FileBC2D76E54BBA65499DDED823A15FC688/@KeyIndexDefined\">True</s:Boolean>\n\t<s:Double x:Key=\"/Default/Environment/InjectedLayers/InjectedLayerCustomization/=FileBC2D76E54BBA65499DDED823A15FC688/RelativePriority/@EntryValue\">1</s:Double>\n</wpf:ResourceDictionary>"
  },
  {
    "path": "src/appveyor.yml",
    "content": "image: Visual Studio 2022\nenvironment:\n  DOTNET_NOLOGO: true\n  DOTNET_CLI_TELEMETRY_OPTOUT: true\n  DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true\nbuild_script:\n- pwsh: |\n    Invoke-WebRequest \"https://dot.net/v1/dotnet-install.ps1\" -OutFile \"./dotnet-install.ps1\"\n    ./dotnet-install.ps1 -JSonFile src/global.json -Architecture x64 -InstallDir 'C:\\Program Files\\dotnet'\n- dotnet build src --configuration Release\n- dotnet test src --configuration Release --no-build --no-restore\ntest: off\non_failure:\n  - ps: |\n      $root = (Get-Location).Path\n      Get-ChildItem *.received.* -Recurse | % {\n        $rel = $_.FullName.Substring($root.Length + 1)\n        Push-AppveyorArtifact $_.FullName -FileName $rel\n      }\nartifacts:\n- path: nugets\\*.nupkg"
  },
  {
    "path": "src/global.json",
    "content": "{\n  \"sdk\": {\n    \"version\": \"10.0.300\",\n    \"allowPrerelease\": true,\n    \"rollForward\": \"latestFeature\"\n  }\n}"
  },
  {
    "path": "src/mdsnippets.json",
    "content": "﻿{\n  \"$schema\": \"https://raw.githubusercontent.com/SimonCropp/MarkdownSnippets/master/schema.json\",\n  \"TocExcludes\": [ \"Release Notes\", \"Icon\" ],\n  \"MaxWidth\": 80,\n  \"ValidateContent\": false,\n  \"Convention\": \"InPlaceOverwrite\"\n}"
  },
  {
    "path": "src/nuget.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<configuration>\n  <config>\n    <add key=\"signatureValidationMode\" value=\"require\" />\n  </config>\n  <packageSources>\n    <clear />\n    <add key=\"nuget.org\" value=\"https://api.nuget.org/v3/index.json\" protocolVersion=\"3\" />\n  </packageSources>\n  <trustedSigners>\n    <repository name=\"nuget.org\" serviceIndex=\"https://api.nuget.org/v3/index.json\">\n      <!-- Current: expires May 15, 2024 -->\n      <certificate fingerprint=\"5A2901D6ADA3D18260B9C6DFE2133C95D74B9EEF6AE0E5DC334C8454D1477DF4\"\n                   hashAlgorithm=\"SHA256\"\n                   allowUntrustedRoot=\"false\" />\n      <!-- Next -->\n      <certificate fingerprint=\"1F4B311D9ACC115C8DC8018B5A49E00FCE6DA8E2855F9F014CA6F34570BC482D\"\n                   hashAlgorithm=\"SHA256\"\n                   allowUntrustedRoot=\"false\" />\n      <!-- For some very old MS packages -->\n      <certificate fingerprint=\"0E5F38F57DC1BCC806D8494F4F90FBCEDD988B46760709CBEEC6F4219AA6157D\"\n                   hashAlgorithm=\"SHA256\"\n                   allowUntrustedRoot=\"false\" />\n    </repository>\n  </trustedSigners>\n</configuration>"
  }
]