@dcrackel/hematournamentui 1.0.706 → 1.0.707

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (330) hide show
  1. package/.prettierignore +7 -1
  2. package/.storybook/main.js +5 -12
  3. package/.storybook/preview-head.html +10 -3
  4. package/.storybook/preview.js +5 -13
  5. package/AGENTS.md +31 -1
  6. package/README.md +29 -22
  7. package/dist/HemaTournamentUI-lib.es.js +7189 -7467
  8. package/dist/HemaTournamentUI-lib.umd.js +27 -27
  9. package/dist/hematournamentui-tailwind.css +0 -24
  10. package/dist/hematournamentui.css +1 -1
  11. package/eslint.config.js +49 -23
  12. package/package.json +6 -2
  13. package/postcss.config.js +3 -3
  14. package/prettier.config.js +16 -10
  15. package/src/config/boutScreenConfigurations.js +52 -50
  16. package/src/main.js +1 -1
  17. package/src/mocks/EventQuestionsMock.js +43 -55
  18. package/src/mocks/assignments.js +180 -181
  19. package/src/mocks/clubGetAllMock.js +8143 -8143
  20. package/src/mocks/eventMock.js +205 -205
  21. package/src/mocks/eventPersonGetInitalPoolAssignmentsLivePools.js +541 -542
  22. package/src/mocks/eventPersonGetInitalPoolAssignmentsPreparing.js +522 -523
  23. package/src/mocks/eventPersonGetInitialPoolAssignments.js +386 -387
  24. package/src/mocks/eventPersonGetInitialPoolAssignments2.js +2267 -2268
  25. package/src/mocks/eventPersonGetInitialStaff.js +94 -95
  26. package/src/mocks/eventPersonGetPoolAssignmentEvent.js +161 -162
  27. package/src/mocks/eventRules.js +87 -86
  28. package/src/mocks/eventpersonGetEventById.js +1737 -1737
  29. package/src/mocks/getAllClubs.js +8143 -8143
  30. package/src/mocks/getAllStaffByTournamentId.js +74 -75
  31. package/src/mocks/getAllWeapons.js +81 -82
  32. package/src/mocks/getAttendance.js +43 -44
  33. package/src/mocks/getClub.js +43 -44
  34. package/src/mocks/getClubDisplayByClubId.js +104 -105
  35. package/src/mocks/getDEBouts-128Fencers.js +3247 -3248
  36. package/src/mocks/getDEBouts-42Fencers.js +3736 -3737
  37. package/src/mocks/getDEBouts-67Fencers.js +6684 -6690
  38. package/src/mocks/getDEBouts-DoubleElim.js +4198 -4199
  39. package/src/mocks/getDEWithBouts.js +628 -629
  40. package/src/mocks/getDeBouts-12fencers.js +1255 -1256
  41. package/src/mocks/getDeBouts-15fencers.js +925 -927
  42. package/src/mocks/getDeBouts-22fencers.js +1683 -1685
  43. package/src/mocks/getDeBouts-6fencers.js +818 -818
  44. package/src/mocks/getEventByTournamentId.js +47 -48
  45. package/src/mocks/getFinalEventResult.js +304 -305
  46. package/src/mocks/getPenaltiesByEvent.js +655 -656
  47. package/src/mocks/getPoolResults.js +1533 -1534
  48. package/src/mocks/getPoolsWithBouts.js +662 -663
  49. package/src/mocks/getPoolsWithBouts6PoolId139.js +885 -886
  50. package/src/mocks/getPoolsWithBoutsByPoolId.js +841 -841
  51. package/src/mocks/getPoolsWithBoutsClubColors.js +4 -4
  52. package/src/mocks/getPoolsWithBoutsComplete.js +919 -921
  53. package/src/mocks/locationMock.js +3213 -3214
  54. package/src/mocks/mockRoutes.js +3 -3
  55. package/src/mocks/personGetAllMock.js +2536 -2537
  56. package/src/mocks/personsMock.js +17569 -17570
  57. package/src/mocks/singleEventMock.js +249 -250
  58. package/src/mocks/tournamentMock.js +1988 -1927
  59. package/src/stories/Atoms/CheckBox/BaseCheckbox.stories.js +25 -23
  60. package/src/stories/Atoms/CheckBox/BaseCheckbox.vue +30 -24
  61. package/src/stories/Atoms/Icon/BaseIcon.stories.js +63 -64
  62. package/src/stories/Atoms/Icon/BaseIcon.test.js +67 -69
  63. package/src/stories/Atoms/Icon/BaseIcon.vue +2 -3
  64. package/src/stories/Atoms/Input/BaseInput.stories.js +18 -18
  65. package/src/stories/Atoms/Input/BaseInput.test.js +65 -67
  66. package/src/stories/Atoms/Input/BaseInput.vue +36 -31
  67. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.stories.js +21 -21
  68. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.test.js +31 -31
  69. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.vue +23 -18
  70. package/src/stories/Atoms/Tag/BaseTag.stories.js +21 -21
  71. package/src/stories/Atoms/Tag/BaseTag.test.js +26 -30
  72. package/src/stories/Atoms/Tag/BaseTag.vue +18 -19
  73. package/src/stories/Atoms/Text/BaseText.stories.js +54 -62
  74. package/src/stories/Atoms/Text/BaseText.test.js +152 -154
  75. package/src/stories/Atoms/Text/BaseText.vue +103 -81
  76. package/src/stories/Configure.mdx +5 -3
  77. package/src/stories/Molecules/Boxes/BoutBoxes/HandshotCounterBox/HandshotCounterBox.stories.js +24 -24
  78. package/src/stories/Molecules/Boxes/BoutBoxes/HandshotCounterBox/HandshotCounterBox.vue +33 -15
  79. package/src/stories/Molecules/Boxes/BoutBoxes/PassesBox/PassesBox.stories.js +46 -48
  80. package/src/stories/Molecules/Boxes/BoutBoxes/PassesBox/PassesBox.vue +38 -25
  81. package/src/stories/Molecules/Boxes/BoutBoxes/PenaltyConfirmationBox/PenaltyConfirmationBox.stories.js +4 -4
  82. package/src/stories/Molecules/Boxes/BoutBoxes/PenaltyConfirmationBox/PenaltyConfirmationBox.vue +9 -4
  83. package/src/stories/Molecules/Boxes/BoutBoxes/ScoreBox/ScoreBox.stories.js +90 -90
  84. package/src/stories/Molecules/Boxes/BoutBoxes/ScoreBox/ScoreBox.vue +51 -32
  85. package/src/stories/Molecules/Boxes/BoutBoxes/TimerBox/TimerBox.stories.js +25 -25
  86. package/src/stories/Molecules/Boxes/BoutBoxes/TimerBox/TimerBox.vue +47 -12
  87. package/src/stories/Molecules/Boxes/CounterBox/CounterBox.stories.js +19 -19
  88. package/src/stories/Molecules/Boxes/CounterBox/CounterBox.vue +25 -19
  89. package/src/stories/Molecules/Boxes/EventStatusBox/EventStatusBox.stories.js +25 -28
  90. package/src/stories/Molecules/Boxes/EventStatusBox/EventStatusBox.vue +7 -7
  91. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.stories.js +28 -29
  92. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.test.js +58 -58
  93. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.vue +15 -15
  94. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.stories.js +86 -86
  95. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.test.js +101 -103
  96. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.vue +87 -24
  97. package/src/stories/Molecules/Buttons/ButtonBar/ButtonBar.stories.js +31 -31
  98. package/src/stories/Molecules/Buttons/ButtonBar/ButtonBar.vue +19 -21
  99. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.stories.js +57 -57
  100. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.test.js +64 -64
  101. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.vue +17 -16
  102. package/src/stories/Molecules/Filters/FilterAndSortBar/FilterAndSortBar.stories.js +19 -19
  103. package/src/stories/Molecules/Filters/FilterAndSortBar/FilterAndSortBar.vue +18 -7
  104. package/src/stories/Molecules/Filters/FilterUpcomingPast/FilterUpcomingPast.stories.js +16 -18
  105. package/src/stories/Molecules/Filters/FilterUpcomingPast/FilterUpcomingPast.vue +31 -13
  106. package/src/stories/Molecules/Indicators/ServerConnected/ServerConnected.stories.js +27 -27
  107. package/src/stories/Molecules/Indicators/ServerConnected/ServerConnected.vue +6 -5
  108. package/src/stories/Molecules/Inputs/MultiSelect/MultiSelect.stories.js +35 -35
  109. package/src/stories/Molecules/Inputs/MultiSelect/MultiSelect.vue +13 -8
  110. package/src/stories/Molecules/Inputs/Toggle/Toggle.stories.js +27 -27
  111. package/src/stories/Molecules/Inputs/Toggle/Toggle.vue +8 -5
  112. package/src/stories/Molecules/Menus/TabBar/TabBar.stories.js +18 -18
  113. package/src/stories/Molecules/Menus/TabBar/TabBar.vue +1 -2
  114. package/src/stories/Molecules/Modals/AddDisplayModal/AddDisplay.stories.js +36 -27
  115. package/src/stories/Molecules/Modals/AddDisplayModal/AddDisplayModal.vue +25 -15
  116. package/src/stories/Molecules/Modals/BaseModal/BaseModal.stories.js +66 -65
  117. package/src/stories/Molecules/Modals/BaseModal/BaseModal.vue +47 -9
  118. package/src/stories/Molecules/Modals/ConfirmModal/ConfirmModal.stories.js +23 -23
  119. package/src/stories/Molecules/Modals/ConfirmModal/ConfirmModal.vue +59 -11
  120. package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.stories.js +37 -37
  121. package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.vue +27 -22
  122. package/src/stories/Molecules/Modals/EditBoutModal/EditBoutModal.stories.js +41 -41
  123. package/src/stories/Molecules/Modals/EditBoutModal/EditBoutModal.vue +27 -15
  124. package/src/stories/Molecules/Modals/EventWizardModal/EventWizardModal.stories.js +29 -30
  125. package/src/stories/Molecules/Modals/EventWizardModal/EventWizardModal.vue +18 -16
  126. package/src/stories/Molecules/Modals/LoadingModal/LoadingModal.stories.js +21 -21
  127. package/src/stories/Molecules/Modals/LoadingModal/LoadingModal.vue +7 -7
  128. package/src/stories/Molecules/Modals/PenaltyModal/PenaltyModal.stories.js +24 -24
  129. package/src/stories/Molecules/Modals/PenaltyModal/PenaltyModal.vue +30 -25
  130. package/src/stories/Molecules/Reorder/ReorderableShell.stories.js +81 -77
  131. package/src/stories/Molecules/Reorder/ReorderableShell.vue +46 -43
  132. package/src/stories/Molecules/StepIndicator/BaseStepIndicator/StepIndicator.stories.js +40 -40
  133. package/src/stories/Molecules/StepIndicator/BaseStepIndicator/StepIndicator.vue +23 -25
  134. package/src/stories/Organisms/Cards/BoutCard/BoutCard.stories.js +34 -29
  135. package/src/stories/Organisms/Cards/BoutCard/BoutCard.vue +69 -66
  136. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardActive/BoutCardActive.stories.js +24 -22
  137. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardActive/BoutCardActive.vue +53 -41
  138. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardInactive/BoutCardInactive.stories.js +24 -37
  139. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardInactive/BoutCardInactive.vue +88 -103
  140. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardReorder/BoutCardReorder.vue +13 -14
  141. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardWaiting/BoutCardWaiting.stories.js +5 -5
  142. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardWaiting/BoutCardWaiting.vue +22 -21
  143. package/src/stories/Organisms/Cards/ClubCard/ClubCard.stories.js +14 -17
  144. package/src/stories/Organisms/Cards/ClubCard/ClubCard.vue +25 -18
  145. package/src/stories/Organisms/Cards/Director/DirectorCard.stories.js +23 -23
  146. package/src/stories/Organisms/Cards/Director/DirectorCard.vue +159 -103
  147. package/src/stories/Organisms/Cards/EditBout/EditBout.stories.js +47 -47
  148. package/src/stories/Organisms/Cards/EditBout/EditBout.test.js +51 -0
  149. package/src/stories/Organisms/Cards/EditBout/EditBout.vue +82 -54
  150. package/src/stories/Organisms/Cards/EventCard/EventCard.stories.js +9 -10
  151. package/src/stories/Organisms/Cards/EventCard/EventCard.vue +83 -63
  152. package/src/stories/Organisms/Cards/FencerCard/FencerCard.stories.js +105 -105
  153. package/src/stories/Organisms/Cards/FencerCard/FencerCard.vue +142 -58
  154. package/src/stories/Organisms/Cards/FencerFinalResultCard/FencerFinalResultCard.stories.js +14 -14
  155. package/src/stories/Organisms/Cards/FencerFinalResultCard/FencerFinalResultCard.vue +37 -26
  156. package/src/stories/Organisms/Cards/FencerPoolResultsCard/FencerPoolResults.stories.js +24 -24
  157. package/src/stories/Organisms/Cards/FencerPoolResultsCard/FencerPoolResultsCard.vue +95 -28
  158. package/src/stories/Organisms/Cards/ImportFencerCard/ImportFencerCard.stories.js +59 -60
  159. package/src/stories/Organisms/Cards/ImportFencerCard/ImportFencerCard.vue +13 -7
  160. package/src/stories/Organisms/Cards/KioskCard/KioskCard.stories.js +34 -34
  161. package/src/stories/Organisms/Cards/KioskCard/KioskCard.vue +149 -104
  162. package/src/stories/Organisms/Cards/PenaltyCard/PenaltyCard.stories.js +19 -20
  163. package/src/stories/Organisms/Cards/PenaltyCard/PenaltyCard.vue +207 -163
  164. package/src/stories/Organisms/Cards/PenaltyFencerCard/PenaltyFencerCard.stories.js +17 -17
  165. package/src/stories/Organisms/Cards/PenaltyFencerCard/PenaltyFencerCard.vue +88 -46
  166. package/src/stories/Organisms/Cards/PoolBoutMatchCard/PoolBoutMatchCard.stories.js +182 -182
  167. package/src/stories/Organisms/Cards/PoolBoutMatchCard/PoolBoutMatchCard.vue +21 -12
  168. package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.stories.js +25 -28
  169. package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.vue +28 -22
  170. package/src/stories/Organisms/Cards/StaffCard/StaffCard.stories.js +62 -62
  171. package/src/stories/Organisms/Cards/StaffCard/StaffCard.vue +27 -22
  172. package/src/stories/Organisms/Cards/TableauBoutCard/SpacingConfig.js +103 -103
  173. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.stories.js +73 -73
  174. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.test.js +44 -0
  175. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.vue +69 -56
  176. package/src/stories/Organisms/Cards/TableauFencerCard/TableauFencerCard.stories.js +80 -81
  177. package/src/stories/Organisms/Cards/TableauFencerCard/TableauFencerCard.vue +39 -22
  178. package/src/stories/Organisms/Cards/TournamentAdminCard/TournamentAdmin.stories.js +20 -20
  179. package/src/stories/Organisms/Cards/TournamentAdminCard/TournamentAdminCard.vue +62 -33
  180. package/src/stories/Organisms/Cards/WaitlistFencerCard/WaitlistFencerCard.vue +44 -30
  181. package/src/stories/Organisms/ComplexInputs/AddressAutocomplete/AddressAutocomplete.stories.js +6 -7
  182. package/src/stories/Organisms/ComplexInputs/AddressAutocomplete/AddressAutocomplete.vue +7 -8
  183. package/src/stories/Organisms/ComplexInputs/ClubColorPicker/ClubColorPicker.stories.js +31 -31
  184. package/src/stories/Organisms/ComplexInputs/ClubColorPicker/ClubColorPicker.vue +30 -35
  185. package/src/stories/Organisms/ComplexInputs/DatePicker/DatePicker.stories.js +13 -16
  186. package/src/stories/Organisms/ComplexInputs/DatePicker/DatePicker.vue +68 -70
  187. package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.stories.js +32 -34
  188. package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.vue +48 -25
  189. package/src/stories/Organisms/ComplexInputs/FindLocation/FindLocation.stories.js +21 -21
  190. package/src/stories/Organisms/ComplexInputs/FindLocation/FindLocation.vue +65 -38
  191. package/src/stories/Organisms/ComplexInputs/FindOrAddPerson/FindOrAddPerson.stories.js +19 -20
  192. package/src/stories/Organisms/ComplexInputs/FindOrAddPerson/FindOrAddPerson.vue +46 -21
  193. package/src/stories/Organisms/ComplexInputs/FindPerson/FindPerson.stories.js +22 -22
  194. package/src/stories/Organisms/ComplexInputs/FindPerson/FindPerson.vue +68 -23
  195. package/src/stories/Organisms/ComplexInputs/ImageCropper/ImageCropper.stories.js +13 -13
  196. package/src/stories/Organisms/ComplexInputs/ImageCropper/ImageCropper.vue +25 -24
  197. package/src/stories/Organisms/ComplexInputs/TextBoxEditor/TextBoxEditor.stories.js +6 -10
  198. package/src/stories/Organisms/ComplexInputs/TextBoxEditor/TextBoxEditor.vue +112 -48
  199. package/src/stories/Organisms/Containers/BoutsSection/BoutsSection.stories.js +43 -44
  200. package/src/stories/Organisms/Containers/BoutsSection/BoutsSection.vue +30 -23
  201. package/src/stories/Organisms/Containers/FinalResults/FinalResultsTable.stories.js +20 -20
  202. package/src/stories/Organisms/Containers/FinalResults/FinalResultsTable.vue +12 -12
  203. package/src/stories/Organisms/Containers/KioskContainer/KioskContainer.stories.js +24 -25
  204. package/src/stories/Organisms/Containers/KioskContainer/KioskContainer.vue +112 -87
  205. package/src/stories/Organisms/Containers/Pool/Pool.stories.js +54 -54
  206. package/src/stories/Organisms/Containers/Pool/Pool.vue +64 -41
  207. package/src/stories/Organisms/Containers/PoolGrid/PoolGrid.stories.js +17 -19
  208. package/src/stories/Organisms/Containers/PoolGrid/PoolGrid.vue +189 -135
  209. package/src/stories/Organisms/Containers/PoolResults/PoolResultsTable.stories.js +53 -54
  210. package/src/stories/Organisms/Containers/PoolResults/PoolResultsTable.vue +107 -73
  211. package/src/stories/Organisms/Containers/Tableau/Tableau.stories.js +23 -24
  212. package/src/stories/Organisms/Containers/Tableau/Tableau.test.js +49 -10
  213. package/src/stories/Organisms/Containers/Tableau/Tableau.vue +96 -173
  214. package/src/stories/Organisms/Containers/TableauColumn/TabeauColumn.stories.js +26 -27
  215. package/src/stories/Organisms/Containers/TableauColumn/TableauColumn.vue +20 -17
  216. package/src/stories/Organisms/Containers/TableauLines/SpacingConfig.js +153 -103
  217. package/src/stories/Organisms/Containers/TableauLines/TableauLines.stories.js +13 -15
  218. package/src/stories/Organisms/Containers/TableauLines/TableauLines.vue +7 -8
  219. package/src/stories/Organisms/Form/AddDisplay/AddDisplay.stories.js +26 -26
  220. package/src/stories/Organisms/Form/AddDisplay/AddDisplay.vue +130 -118
  221. package/src/stories/Organisms/Form/AddNewPerson/AddNewPerson.stories.js +14 -15
  222. package/src/stories/Organisms/Form/AddNewPerson/AddNewPerson.vue +94 -88
  223. package/src/stories/Organisms/Grids/GridContainer.stories.js +101 -101
  224. package/src/stories/Organisms/Grids/GridContainer.vue +160 -136
  225. package/src/stories/Organisms/Headers/AttendanceSummary/AttendanceSummary.stories.js +47 -47
  226. package/src/stories/Organisms/Headers/AttendanceSummary/AttendanceSummary.vue +65 -54
  227. package/src/stories/Organisms/Headers/EventFinalResultsHeader/EventFinalResultsHeader.stories.js +27 -27
  228. package/src/stories/Organisms/Headers/EventFinalResultsHeader/EventFinalResultsHeader.vue +38 -22
  229. package/src/stories/Organisms/Headers/PenaltySummary/PenaltySummary.stories.js +80 -80
  230. package/src/stories/Organisms/Headers/PenaltySummary/PenaltySummary.vue +14 -6
  231. package/src/stories/Organisms/Headers/PoolResultsHeader/PoolResultsHeader.stories.js +34 -34
  232. package/src/stories/Organisms/Headers/PoolResultsHeader/PoolResultsHeader.vue +36 -36
  233. package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.stories.js +21 -21
  234. package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.vue +56 -29
  235. package/src/stories/Organisms/Headers/ToggleHeader/ToggleHeader.stories.js +38 -38
  236. package/src/stories/Organisms/Headers/ToggleHeader/ToggleHeader.vue +19 -20
  237. package/src/stories/Organisms/RankCalculator/ByLetter/RankCalculator.stories.js +12 -13
  238. package/src/stories/Organisms/RankCalculator/ByLetter/RankCalculator.vue +47 -41
  239. package/src/stories/Organisms/RankCalculator/ByPoints/RankCalculatorByPoints.stories.js +12 -13
  240. package/src/stories/Organisms/RankCalculator/ByPoints/RankCalculatorByPoints.vue +66 -37
  241. package/src/stories/Organisms/Skeletons/ClubManagement/ClubManagement.stories.js +6 -10
  242. package/src/stories/Organisms/Skeletons/ClubManagement/ClubMangementSkeleton.vue +2 -2
  243. package/src/stories/Organisms/Skeletons/EventCard/EventCardSkeleton.stories.js +6 -10
  244. package/src/stories/Organisms/Skeletons/EventCard/EventCardSkeleton.vue +2 -3
  245. package/src/stories/Organisms/Skeletons/FencerCard/FencerCardSkeleton.stories.js +6 -10
  246. package/src/stories/Organisms/Skeletons/FencerCard/FencerCardSkeleton.vue +1 -1
  247. package/src/stories/Organisms/Skeletons/PersonManagement/PersonManagementSkeleton.stories.js +6 -9
  248. package/src/stories/Organisms/Skeletons/PersonManagement/PersonManagementSkeleton.vue +2 -2
  249. package/src/stories/Organisms/Skeletons/PoolSkeleton/PoolSkeleton.stories.js +6 -10
  250. package/src/stories/Organisms/Skeletons/PoolSkeleton/PoolSkeleton.vue +10 -4
  251. package/src/stories/Organisms/Skeletons/TournamentCard/TournamentCardSkeleton.stories.js +6 -10
  252. package/src/stories/Organisms/Skeletons/TournamentCard/TournamentCardSkeleton.vue +2 -2
  253. package/src/stories/Organisms/Wizards/EditEventWizard/BasicEventInfo/BasicEventInfo.stories.js +34 -34
  254. package/src/stories/Organisms/Wizards/EditEventWizard/BasicEventInfo/BasicEventInfo.vue +106 -56
  255. package/src/stories/Organisms/Wizards/EditEventWizard/DirectElimination/DirectElimination.stories.js +95 -95
  256. package/src/stories/Organisms/Wizards/EditEventWizard/DirectElimination/DirectElimination.vue +129 -69
  257. package/src/stories/Organisms/Wizards/EditEventWizard/DirectEliminationPromotion/DirectEliminationPromotion.stories.js +87 -88
  258. package/src/stories/Organisms/Wizards/EditEventWizard/DirectEliminationPromotion/DirectEliminationPromotion.vue +105 -60
  259. package/src/stories/Organisms/Wizards/EditEventWizard/EditEventWizard.stories.js +82 -82
  260. package/src/stories/Organisms/Wizards/EditEventWizard/EditEventWizard.vue +150 -177
  261. package/src/stories/Organisms/Wizards/EditEventWizard/EventCustomization/EventCustomization.stories.js +28 -28
  262. package/src/stories/Organisms/Wizards/EditEventWizard/EventCustomization/EventCustomization.vue +96 -36
  263. package/src/stories/Organisms/Wizards/EditEventWizard/PoolConfiguration/PoolConfiguration.stories.js +99 -99
  264. package/src/stories/Organisms/Wizards/EditEventWizard/PoolConfiguration/PoolConfiguration.vue +115 -67
  265. package/src/stories/Templates/Assignment/Assignment.stories.js +22 -23
  266. package/src/stories/Templates/Assignment/Assignment.vue +210 -161
  267. package/src/stories/Templates/ClubManagement/ClubBasic/ClubBasic.stories.js +90 -90
  268. package/src/stories/Templates/ClubManagement/ClubBasic/ClubBasic.vue +68 -55
  269. package/src/stories/Templates/ClubManagement/ClubManagement.stories.js +87 -87
  270. package/src/stories/Templates/ClubManagement/ClubManagement.vue +167 -147
  271. package/src/stories/Templates/EventManagement/Bracket/Bracket.stories.js +82 -103
  272. package/src/stories/Templates/EventManagement/Bracket/Bracket.test.js +88 -43
  273. package/src/stories/Templates/EventManagement/Bracket/Bracket.vue +167 -200
  274. package/src/stories/Templates/EventManagement/EditEventInfo/EditEventInfo.stories.js +49 -50
  275. package/src/stories/Templates/EventManagement/EditEventInfo/EditEventInfo.vue +21 -21
  276. package/src/stories/Templates/EventManagement/EventAttendance/EventAttendance.stories.js +105 -103
  277. package/src/stories/Templates/EventManagement/EventAttendance/EventAttendance.vue +289 -226
  278. package/src/stories/Templates/EventManagement/EventFinalResults/EventFinalResults.stories.js +30 -30
  279. package/src/stories/Templates/EventManagement/EventFinalResults/EventFinalResults.vue +27 -22
  280. package/src/stories/Templates/EventManagement/KioskDisplay/KioskDisplay.stories.js +44 -45
  281. package/src/stories/Templates/EventManagement/KioskDisplay/KioskDisplay.vue +52 -43
  282. package/src/stories/Templates/EventManagement/Penalties/PenaltyReport.stories.js +28 -29
  283. package/src/stories/Templates/EventManagement/Penalties/PenaltyReport.vue +54 -39
  284. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.stories.js +80 -111
  285. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.test.js +121 -0
  286. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.vue +290 -255
  287. package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.stories.js +109 -107
  288. package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.vue +144 -87
  289. package/src/stories/Templates/EventManagement/PoolResults/PoolResults.stories.js +56 -57
  290. package/src/stories/Templates/EventManagement/PoolResults/PoolResults.vue +132 -123
  291. package/src/stories/Templates/EventManagement/StaffList/StaffList.stories.js +56 -57
  292. package/src/stories/Templates/EventManagement/StaffList/StaffList.vue +84 -47
  293. package/src/stories/Templates/Menus/Admin/AdminLeftMenu.stories.js +29 -29
  294. package/src/stories/Templates/Menus/Admin/AdminLeftMenu.vue +71 -67
  295. package/src/stories/Templates/Menus/EditEventsTopMenu/EditEventsTopMenu.stories.js +39 -40
  296. package/src/stories/Templates/Menus/EditEventsTopMenu/EditEventsTopMenu.vue +79 -71
  297. package/src/stories/Templates/PersonManagement/Admin/Administration/Administration.stories.js +47 -47
  298. package/src/stories/Templates/PersonManagement/Admin/Administration/Administration.vue +39 -42
  299. package/src/stories/Templates/PersonManagement/Admin/FencerAdmin/FencerAdmin.stories.js +54 -54
  300. package/src/stories/Templates/PersonManagement/Admin/FencerAdmin/FencerAdmin.vue +27 -31
  301. package/src/stories/Templates/PersonManagement/Admin/MergeAccounts/MergeAccounts.stories.js +69 -69
  302. package/src/stories/Templates/PersonManagement/Admin/MergeAccounts/MergeAccounts.vue +78 -89
  303. package/src/stories/Templates/PersonManagement/Attendance/Attendance.stories.js +22 -22
  304. package/src/stories/Templates/PersonManagement/Attendance/Attendance.vue +61 -33
  305. package/src/stories/Templates/PersonManagement/Basic/BasicEdit.stories.js +29 -29
  306. package/src/stories/Templates/PersonManagement/Basic/BasicEdit.vue +80 -53
  307. package/src/stories/Templates/PersonManagement/PersonManagement.stories.js +84 -86
  308. package/src/stories/Templates/PersonManagement/PersonManagement.vue +107 -82
  309. package/src/stories/Templates/TournamentManagement/ListEvents/ListEvents.stories.js +31 -31
  310. package/src/stories/Templates/TournamentManagement/ListEvents/ListEvents.vue +70 -51
  311. package/src/stories/Templates/TournamentManagement/TournamentManagement.stories.js +79 -79
  312. package/src/stories/Templates/TournamentManagement/TournamentManagement.vue +275 -230
  313. package/src/stories/Templates/TournamentManagement/TournamentPageOne/TournamentPageOne.stories.js +113 -113
  314. package/src/stories/Templates/TournamentManagement/TournamentPageOne/TournamentPageOne.vue +175 -146
  315. package/src/stories/Templates/TournamentManagement/TournamentPageTwo/TournamentPageTwo.stories.js +77 -77
  316. package/src/stories/Templates/TournamentManagement/TournamentPageTwo/TournamentPageTwo.vue +208 -185
  317. package/src/stories/Util/Validations/AddNewPersonModalValidation.js +23 -19
  318. package/src/stories/Util/Validations/ClubManagementValidations.js +17 -21
  319. package/src/stories/Util/Validations/PersonManagementValidations.js +26 -22
  320. package/src/stories/Util/Validations/TournamentFieldsValidations.js +20 -18
  321. package/src/stories/Util/seeding.js +131 -131
  322. package/src/stories/Util/tabs.js +75 -75
  323. package/tailwind/tailwind.css +5 -7
  324. package/tailwind.config.js +12 -15
  325. package/vite.config.js +3 -3
  326. package/src/mocks/getDirectors.js +0 -18
  327. package/src/stories/Molecules/Modals/AssignDirectorModal/AssignDirectorModal.stories.js +0 -45
  328. package/src/stories/Molecules/Modals/AssignDirectorModal/AssignDirectorModal.vue +0 -111
  329. package/src/stories/Organisms/Cards/DirectorAssignmentCard/DirectorAssignmentCard.stories.js +0 -45
  330. package/src/stories/Organisms/Cards/DirectorAssignmentCard/DirectorAssignmentCard.vue +0 -83
@@ -1,2270 +1,2269 @@
1
- const eventPersonGetInitialPoolAssignments2 =
1
+ const eventPersonGetInitialPoolAssignments2 = {
2
+ message: 'Pool Summary',
3
+ event: {
4
+ EventId: 82,
5
+ TournamentId: 34,
6
+ EventName: 'Open Longsword',
7
+ Date: '2023-01-16',
8
+ StartTime: '12:00:00',
9
+ NumberOfRings: 8,
10
+ NumberOfPools: 21,
11
+ PoolSize: 5,
12
+ Flights: 3,
13
+ WeaponId: 1,
14
+ Status: 'custompool', //custompool
15
+ Present: 101,
16
+ Absent: 0,
17
+ Removed: 0,
18
+ EventRules: [
19
+ {
20
+ EventId: 82,
21
+ RuleId: 1,
22
+ RuleValue: '180',
23
+ Rules: {
24
+ RuleName: 'PoolTime',
25
+ Context: 'pool'
26
+ }
27
+ },
28
+ {
29
+ EventId: 82,
30
+ RuleId: 2,
31
+ RuleValue: '7',
32
+ Rules: {
33
+ RuleName: 'PoolMaxPoints',
34
+ Context: 'pool'
35
+ }
36
+ },
37
+ {
38
+ EventId: 82,
39
+ RuleId: 3,
40
+ RuleValue: '180',
41
+ Rules: {
42
+ RuleName: 'DETime',
43
+ Context: 'de'
44
+ }
45
+ },
46
+ {
47
+ EventId: 82,
48
+ RuleId: 4,
49
+ RuleValue: '7',
50
+ Rules: {
51
+ RuleName: 'DEMaxPoints',
52
+ Context: 'de'
53
+ }
54
+ },
55
+ {
56
+ EventId: 82,
57
+ RuleId: 5,
58
+ RuleValue: 'true',
59
+ Rules: {
60
+ RuleName: 'DE3rdFenceOff',
61
+ Context: 'de'
62
+ }
63
+ },
64
+ {
65
+ EventId: 82,
66
+ RuleId: 9,
67
+ RuleValue: 'Win Percent,Win Count,Indicator,Points Scored',
68
+ Rules: {
69
+ RuleName: 'DEPromotionOrder',
70
+ Context: 'de'
71
+ }
72
+ },
73
+ {
74
+ EventId: 82,
75
+ RuleId: 10,
76
+ RuleValue: '100%',
77
+ Rules: {
78
+ RuleName: 'DENumOfPromotion',
79
+ Context: 'de'
80
+ }
81
+ },
82
+ {
83
+ EventId: 82,
84
+ RuleId: 11,
85
+ RuleValue: 'Manual',
86
+ Rules: {
87
+ RuleName: 'PoolSeeding',
88
+ Context: 'pool'
89
+ }
90
+ },
91
+ {
92
+ EventId: 82,
93
+ RuleId: 14,
94
+ RuleValue: '64',
95
+ Rules: {
96
+ RuleName: 'CutOffNumber',
97
+ Context: 'event'
98
+ }
99
+ },
100
+ {
101
+ EventId: 82,
102
+ RuleId: 15,
103
+ RuleValue: 'single',
104
+ Rules: {
105
+ RuleName: 'DEType',
106
+ Context: 'de'
107
+ }
108
+ },
109
+ {
110
+ EventId: 82,
111
+ RuleId: 16,
112
+ RuleValue: 'true',
113
+ Rules: {
114
+ RuleName: 'PoolScoreDirection',
115
+ Context: 'event'
116
+ }
117
+ },
118
+ {
119
+ EventId: 82,
120
+ RuleId: 17,
121
+ RuleValue: 'Top Percent,Top Count,Top Count of Each Pool',
122
+ Rules: {
123
+ RuleName: 'DEPromoteBy',
124
+ Context: 'de'
125
+ }
126
+ }
127
+ ],
128
+ Weapon: {
129
+ HRWeaponId: '1'
130
+ }
131
+ },
132
+ pools: [
2
133
  {
3
- "message": "Pool Summary",
4
- "event": {
5
- "EventId": 82,
6
- "TournamentId": 34,
7
- "EventName": "Open Longsword",
8
- "Date": "2023-01-16",
9
- "StartTime": "12:00:00",
10
- "NumberOfRings": 8,
11
- "NumberOfPools": 21,
12
- "PoolSize": 5,
13
- "Flights": 3,
14
- "WeaponId": 1,
15
- "Status": "custompool", //custompool
16
- "Present": 101,
17
- "Absent": 0,
18
- "Removed": 0,
19
- "EventRules": [
20
- {
21
- "EventId": 82,
22
- "RuleId": 1,
23
- "RuleValue": "180",
24
- "Rules": {
25
- "RuleName": "PoolTime",
26
- "Context": "pool"
27
- }
28
- },
29
- {
30
- "EventId": 82,
31
- "RuleId": 2,
32
- "RuleValue": "7",
33
- "Rules": {
34
- "RuleName": "PoolMaxPoints",
35
- "Context": "pool"
36
- }
37
- },
38
- {
39
- "EventId": 82,
40
- "RuleId": 3,
41
- "RuleValue": "180",
42
- "Rules": {
43
- "RuleName": "DETime",
44
- "Context": "de"
45
- }
46
- },
47
- {
48
- "EventId": 82,
49
- "RuleId": 4,
50
- "RuleValue": "7",
51
- "Rules": {
52
- "RuleName": "DEMaxPoints",
53
- "Context": "de"
54
- }
55
- },
56
- {
57
- "EventId": 82,
58
- "RuleId": 5,
59
- "RuleValue": "true",
60
- "Rules": {
61
- "RuleName": "DE3rdFenceOff",
62
- "Context": "de"
63
- }
64
- },
65
- {
66
- "EventId": 82,
67
- "RuleId": 9,
68
- "RuleValue": "Win Percent,Win Count,Indicator,Points Scored",
69
- "Rules": {
70
- "RuleName": "DEPromotionOrder",
71
- "Context": "de"
72
- }
73
- },
74
- {
75
- "EventId": 82,
76
- "RuleId": 10,
77
- "RuleValue": "100%",
78
- "Rules": {
79
- "RuleName": "DENumOfPromotion",
80
- "Context": "de"
81
- }
82
- },
83
- {
84
- "EventId": 82,
85
- "RuleId": 11,
86
- "RuleValue": "Manual",
87
- "Rules": {
88
- "RuleName": "PoolSeeding",
89
- "Context": "pool"
90
- }
91
- },
92
- {
93
- "EventId": 82,
94
- "RuleId": 14,
95
- "RuleValue": "64",
96
- "Rules": {
97
- "RuleName": "CutOffNumber",
98
- "Context": "event"
99
- }
100
- },
101
- {
102
- "EventId": 82,
103
- "RuleId": 15,
104
- "RuleValue": "single",
105
- "Rules": {
106
- "RuleName": "DEType",
107
- "Context": "de"
108
- }
109
- },
110
- {
111
- "EventId": 82,
112
- "RuleId": 16,
113
- "RuleValue": "true",
114
- "Rules": {
115
- "RuleName": "PoolScoreDirection",
116
- "Context": "event"
117
- }
118
- },
119
- {
120
- "EventId": 82,
121
- "RuleId": 17,
122
- "RuleValue": "Top Percent,Top Count,Top Count of Each Pool",
123
- "Rules": {
124
- "RuleName": "DEPromoteBy",
125
- "Context": "de"
126
- }
127
- }
128
- ],
129
- "Weapon": {
130
- "HRWeaponId": "1"
131
- }
132
- },
133
- "pools": [
134
- {
135
- "PoolId": 404,
136
- "Name": "Pool 1",
137
- "RingName": "Ring 1",
138
- "Flight": 1,
139
- "PoolType": "pool",
140
- "EventId": 82,
141
- "Status": "custom",
142
- "Updated": "2024-12-21T00:00:45.000Z",
143
- "Staff": [],
144
- "participants": [
145
- {
146
- "Person": {
147
- "PersonId": 339,
148
- "DisplayName": "Michael Creech",
149
- "Pronouns": "He/Him",
150
- "ClubId": 46,
151
- "ShowData": true,
152
- "Club": {
153
- "Name": "Capital Kunst Des Fechtens",
154
- "ShortName": "CKDF",
155
- "Images": []
156
- },
157
- "Images": []
158
- },
159
- "PoolId": 404,
160
- "PoolPosition": 86,
161
- "Seed": 86
162
- },
163
- {
164
- "Person": {
165
- "PersonId": 325,
166
- "DisplayName": "Stephen Cheney",
167
- "Pronouns": "He/Him",
168
- "ClubId": 62,
169
- "ShowData": true,
170
- "Club": {
171
- "Name": "Bucks Historical Longsword",
172
- "ShortName": "BHL",
173
- "Images": []
174
- },
175
- "Images": []
176
- },
177
- "PoolId": 404,
178
- "PoolPosition": 1,
179
- "Seed": 1
180
- },
181
- {
182
- "Person": {
183
- "PersonId": 368,
184
- "DisplayName": "Chris Szutenbach-Gallo",
185
- "Pronouns": "He/Him",
186
- "ClubId": 58,
187
- "ShowData": true,
188
- "Club": {
189
- "Name": "Mid-Atlantic Society for Historic Swordsmanship",
190
- "ShortName": "MASHS",
191
- "Images": []
192
- },
193
- "Images": []
194
- },
195
- "PoolId": 404,
196
- "PoolPosition": 42,
197
- "Seed": 42
198
- },
199
- {
200
- "Person": {
201
- "PersonId": 407,
202
- "DisplayName": "Lee Kristensen",
203
- "Pronouns": "He/Him",
204
- "ClubId": 75,
205
- "ShowData": true,
206
- "Club": {
207
- "Name": "Atlanta Historical Fencing Academy",
208
- "ShortName": "AHFA",
209
- "Images": []
210
- },
211
- "Images": []
212
- },
213
- "PoolId": 404,
214
- "PoolPosition": 43,
215
- "Seed": 43
216
- },
217
- {
218
- "Person": {
219
- "PersonId": 358,
220
- "DisplayName": "Storm Pulikkathara",
221
- "Pronouns": "She/Her",
222
- "ClubId": 17,
223
- "ShowData": true,
224
- "Club": {
225
- "Name": "No Club Affiliation ",
226
- "ShortName": "NoClub",
227
- "Images": []
228
- },
229
- "Images": []
230
- },
231
- "PoolId": 404,
232
- "PoolPosition": 84,
233
- "Seed": 84
234
- },
235
- {
236
- "Person": {
237
- "PersonId": 359,
238
- "DisplayName": "Leila Bobrow",
239
- "Pronouns": "She/Her",
240
- "ClubId": 30,
241
- "ShowData": true,
242
- "Club": {
243
- "Name": "Maryland Kunst Des Fechtens",
244
- "ShortName": "MKDF",
245
- "Images": []
246
- },
247
- "Images": []
248
- },
249
- "PoolId": 404,
250
- "PoolPosition": 85,
251
- "Seed": 85
252
- }
253
- ],
254
- "BoutsLeft": 0,
255
- "TotalBouts": 0
256
- },
257
- {
258
- "PoolId": 405,
259
- "Name": "Pool 2",
260
- "RingName": "Ring 2",
261
- "Flight": 1,
262
- "PoolType": "pool",
263
- "EventId": 82,
264
- "Status": "preparation",
265
- "Updated": "2024-12-21T00:00:45.000Z",
266
- "Staff": [],
267
- "participants": [
268
- {
269
- "Person": {
270
- "PersonId": 387,
271
- "DisplayName": "Arto Fama",
272
- "Pronouns": "He/Him",
273
- "ClubId": 272,
274
- "ShowData": true,
275
- "Club": {
276
- "Name": "Zwaard & Steen",
277
- "ShortName": null,
278
- "Images": []
279
- },
280
- "Images": []
281
- },
282
- "PoolId": 405,
283
- "PoolPosition": 3,
284
- "Seed": 3
285
- },
286
- {
287
- "Person": {
288
- "PersonId": 401,
289
- "DisplayName": "Benjamin Aycrigg",
290
- "Pronouns": "He/Him",
291
- "ClubId": 75,
292
- "ShowData": true,
293
- "Club": {
294
- "Name": "Atlanta Historical Fencing Academy",
295
- "ShortName": "AHFA",
296
- "Images": []
297
- },
298
- "Images": []
299
- },
300
- "PoolId": 405,
301
- "PoolPosition": 2,
302
- "Seed": 2
303
- },
304
- {
305
- "Person": {
306
- "PersonId": 383,
307
- "DisplayName": "Dustin Collier",
308
- "Pronouns": "He/Him",
309
- "ClubId": 52,
310
- "ShowData": true,
311
- "Club": {
312
- "Name": "Virginia Academy Of Fencing",
313
- "ShortName": "VAF",
314
- "Images": []
315
- },
316
- "Images": []
317
- },
318
- "PoolId": 405,
319
- "PoolPosition": 41,
320
- "Seed": 41
321
- },
322
- {
323
- "Person": {
324
- "PersonId": 405,
325
- "DisplayName": "Rohit Mathilakath",
326
- "Pronouns": "He/Him",
327
- "ClubId": 78,
328
- "ShowData": true,
329
- "Club": {
330
- "Name": "Sword to Sword",
331
- "ShortName": "STS",
332
- "Images": []
333
- },
334
- "Images": []
335
- },
336
- "PoolId": 405,
337
- "PoolPosition": 44,
338
- "Seed": 44
339
- },
340
- {
341
- "Person": {
342
- "PersonId": 376,
343
- "DisplayName": "Kyle Crandall",
344
- "Pronouns": "He/Him",
345
- "ClubId": 46,
346
- "ShowData": true,
347
- "Club": {
348
- "Name": "Capital Kunst Des Fechtens",
349
- "ShortName": "CKDF",
350
- "Images": []
351
- },
352
- "Images": []
353
- },
354
- "PoolId": 405,
355
- "PoolPosition": 83,
356
- "Seed": 83
357
- }
358
- ],
359
- "BoutsLeft": 0,
360
- "TotalBouts": 0
361
- },
362
- {
363
- "PoolId": 406,
364
- "Name": "Pool 3",
365
- "RingName": "Ring 3",
366
- "Flight": 1,
367
- "PoolType": "pool",
368
- "EventId": 82,
369
- "Status": "preparation",
370
- "Updated": "2024-12-21T00:00:45.000Z",
371
- "Staff": [],
372
- "participants": [
373
- {
374
- "Person": {
375
- "PersonId": 235,
376
- "DisplayName": "Genevieve Kelly",
377
- "Pronouns": "She/Her",
378
- "ClubId": 307,
379
- "ShowData": true,
380
- "Club": {
381
- "Name": "Scuffletown Federfechters",
382
- "ShortName": null,
383
- "Images": []
384
- },
385
- "Images": []
386
- },
387
- "PoolId": 406,
388
- "PoolPosition": 39,
389
- "Seed": 39
390
- },
391
- {
392
- "Person": {
393
- "PersonId": 389,
394
- "DisplayName": "Benjamin Ware",
395
- "Pronouns": "He/Him",
396
- "ClubId": 17,
397
- "ShowData": true,
398
- "Club": {
399
- "Name": "No Club Affiliation ",
400
- "ShortName": "NoClub",
401
- "Images": []
402
- },
403
- "Images": []
404
- },
405
- "PoolId": 406,
406
- "PoolPosition": 87,
407
- "Seed": 87
408
- },
409
- {
410
- "Person": {
411
- "PersonId": 284,
412
- "DisplayName": "Matthew Miraglia",
413
- "Pronouns": "He/Him",
414
- "ClubId": 17,
415
- "ShowData": true,
416
- "Club": {
417
- "Name": "No Club Affiliation ",
418
- "ShortName": "NoClub",
419
- "Images": []
420
- },
421
- "Images": []
422
- },
423
- "PoolId": 406,
424
- "PoolPosition": 40,
425
- "Seed": 40
426
- },
427
- {
428
- "Person": {
429
- "PersonId": 240,
430
- "DisplayName": "Henry Kenyon",
431
- "Pronouns": "He/Him",
432
- "ClubId": 46,
433
- "ShowData": true,
434
- "Club": {
435
- "Name": "Capital Kunst Des Fechtens",
436
- "ShortName": "CKDF",
437
- "Images": []
438
- },
439
- "Images": []
440
- },
441
- "PoolId": 406,
442
- "PoolPosition": 82,
443
- "Seed": 82
444
- },
445
- {
446
- "Person": {
447
- "PersonId": 385,
448
- "DisplayName": "John Thomas",
449
- "Pronouns": "He/Him",
450
- "ClubId": 17,
451
- "ShowData": true,
452
- "Club": {
453
- "Name": "No Club Affiliation ",
454
- "ShortName": "NoClub",
455
- "Images": []
456
- },
457
- "Images": []
458
- },
459
- "PoolId": 406,
460
- "PoolPosition": 45,
461
- "Seed": 45
462
- }
463
- ],
464
- "BoutsLeft": 0,
465
- "TotalBouts": 0
466
- },
467
- {
468
- "PoolId": 407,
469
- "Name": "Pool 4",
470
- "RingName": "Ring 4",
471
- "Flight": 1,
472
- "PoolType": "pool",
473
- "EventId": 82,
474
- "Status": "preparation",
475
- "Updated": "2024-12-21T00:00:45.000Z",
476
- "Staff": [],
477
- "participants": [
478
- {
479
- "Person": {
480
- "PersonId": 352,
481
- "DisplayName": "Andrew Gleason",
482
- "Pronouns": "He/Him",
483
- "ClubId": 102,
484
- "ShowData": true,
485
- "Club": {
486
- "Name": "Boston Armizare",
487
- "ShortName": "BA",
488
- "Images": []
489
- },
490
- "Images": []
491
- },
492
- "PoolId": 407,
493
- "PoolPosition": 47,
494
- "Seed": 47
495
- },
496
- {
497
- "Person": {
498
- "PersonId": 242,
499
- "DisplayName": "Zach Showalter",
500
- "Pronouns": "He/Him",
501
- "ClubId": 259,
502
- "ShowData": true,
503
- "Club": {
504
- "Name": "Richmond Fencing Club",
505
- "ShortName": "RFC",
506
- "Images": []
507
- },
508
- "Images": []
509
- },
510
- "PoolId": 407,
511
- "PoolPosition": 4,
512
- "Seed": 4
513
- },
514
- {
515
- "Person": {
516
- "PersonId": 367,
517
- "DisplayName": "Craig Kellner",
518
- "Pronouns": "He/Him",
519
- "ClubId": 46,
520
- "ShowData": true,
521
- "Club": {
522
- "Name": "Capital Kunst Des Fechtens",
523
- "ShortName": "CKDF",
524
- "Images": []
525
- },
526
- "Images": []
527
- },
528
- "PoolId": 407,
529
- "PoolPosition": 46,
530
- "Seed": 46
531
- },
532
- {
533
- "Person": {
534
- "PersonId": 409,
535
- "DisplayName": "Neil Satterlund",
536
- "Pronouns": "He/Him",
537
- "ClubId": 17,
538
- "ShowData": true,
539
- "Club": {
540
- "Name": "No Club Affiliation ",
541
- "ShortName": "NoClub",
542
- "Images": []
543
- },
544
- "Images": []
545
- },
546
- "PoolId": 407,
547
- "PoolPosition": 88,
548
- "Seed": 88
549
- },
550
- {
551
- "Person": {
552
- "PersonId": 177,
553
- "DisplayName": "Alyssa Capel",
554
- "Pronouns": "She/Her",
555
- "ClubId": 62,
556
- "ShowData": true,
557
- "Club": {
558
- "Name": "Bucks Historical Longsword",
559
- "ShortName": "BHL",
560
- "Images": []
561
- },
562
- "Images": []
563
- },
564
- "PoolId": 407,
565
- "PoolPosition": 81,
566
- "Seed": 81
567
- }
568
- ],
569
- "BoutsLeft": 0,
570
- "TotalBouts": 0
571
- },
572
- {
573
- "PoolId": 408,
574
- "Name": "Pool 5",
575
- "RingName": "Ring 5",
576
- "Flight": 1,
577
- "PoolType": "pool",
578
- "EventId": 82,
579
- "Status": "preparation",
580
- "Updated": "2024-12-21T00:00:45.000Z",
581
- "Staff": [],
582
- "participants": [
583
- {
584
- "Person": {
585
- "PersonId": 371,
586
- "DisplayName": "Avery Barnard",
587
- "Pronouns": "He/Him",
588
- "ClubId": 258,
589
- "ShowData": true,
590
- "Club": {
591
- "Name": "Montgomery County Historical Fencing",
592
- "ShortName": "MCHF",
593
- "Images": []
594
- },
595
- "Images": []
596
- },
597
- "PoolId": 408,
598
- "PoolPosition": 89,
599
- "Seed": 89
600
- },
601
- {
602
- "Person": {
603
- "PersonId": 182,
604
- "DisplayName": "Jonathan Paulino",
605
- "Pronouns": "He/Him",
606
- "ClubId": 49,
607
- "ShowData": true,
608
- "Club": {
609
- "Name": "Philadelphia Common Fencers Guild",
610
- "ShortName": "PCFG",
611
- "Images": []
612
- },
613
- "Images": []
614
- },
615
- "PoolId": 408,
616
- "PoolPosition": 5,
617
- "Seed": 5
618
- },
619
- {
620
- "Person": {
621
- "PersonId": 340,
622
- "DisplayName": "Fernan Gomez-Monedero",
623
- "Pronouns": "He/Him",
624
- "ClubId": 109,
625
- "ShowData": true,
626
- "Club": {
627
- "Name": "Athena School of Arms",
628
- "ShortName": "ASoA",
629
- "Images": []
630
- },
631
- "Images": []
632
- },
633
- "PoolId": 408,
634
- "PoolPosition": 80,
635
- "Seed": 80
636
- },
637
- {
638
- "Person": {
639
- "PersonId": 349,
640
- "DisplayName": "Bradley Smith",
641
- "Pronouns": "He/Him",
642
- "ClubId": 76,
643
- "ShowData": true,
644
- "Club": {
645
- "Name": "Denver Historical Fencing Academy",
646
- "ShortName": "DHFA",
647
- "Images": []
648
- },
649
- "Images": []
650
- },
651
- "PoolId": 408,
652
- "PoolPosition": 6,
653
- "Seed": 6
654
- },
655
- {
656
- "Person": {
657
- "PersonId": 335,
658
- "DisplayName": "Steven Obrzut",
659
- "Pronouns": "He/Him",
660
- "ClubId": 104,
661
- "ShowData": true,
662
- "Club": {
663
- "Name": "True Edge Academy of Swordsmanship",
664
- "ShortName": "TEAoS",
665
- "Images": []
666
- },
667
- "Images": []
668
- },
669
- "PoolId": 408,
670
- "PoolPosition": 38,
671
- "Seed": 38
672
- }
673
- ],
674
- "BoutsLeft": 0,
675
- "TotalBouts": 0
676
- },
677
- {
678
- "PoolId": 409,
679
- "Name": "Pool 6",
680
- "RingName": "Ring 6",
681
- "Flight": 1,
682
- "PoolType": "pool",
683
- "EventId": 82,
684
- "Status": "preparation",
685
- "Updated": "2024-12-21T00:00:45.000Z",
686
- "Staff": [],
687
- "participants": [
688
- {
689
- "Person": {
690
- "PersonId": 148,
691
- "DisplayName": "Camilla Fraizer ",
692
- "Pronouns": "She/Her",
693
- "ClubId": 17,
694
- "ShowData": true,
695
- "Club": {
696
- "Name": "No Club Affiliation ",
697
- "ShortName": "NoClub",
698
- "Images": []
699
- },
700
- "Images": []
701
- },
702
- "PoolId": 409,
703
- "PoolPosition": 36,
704
- "Seed": 36
705
- },
706
- {
707
- "Person": {
708
- "PersonId": 377,
709
- "DisplayName": "Jarred Thompson",
710
- "Pronouns": "He/Him",
711
- "ClubId": 75,
712
- "ShowData": true,
713
- "Club": {
714
- "Name": "Atlanta Historical Fencing Academy",
715
- "ShortName": "AHFA",
716
- "Images": []
717
- },
718
- "Images": []
719
- },
720
- "PoolId": 409,
721
- "PoolPosition": 49,
722
- "Seed": 49
723
- },
724
- {
725
- "Person": {
726
- "PersonId": 12,
727
- "DisplayName": "Lindsey Mitchell",
728
- "Pronouns": "They/Them",
729
- "ClubId": 17,
730
- "ShowData": true,
731
- "Club": {
732
- "Name": "No Club Affiliation ",
733
- "ShortName": "NoClub",
734
- "Images": []
735
- },
736
- "Images": []
737
- },
738
- "PoolId": 409,
739
- "PoolPosition": 48,
740
- "Seed": 48
741
- },
742
- {
743
- "Person": {
744
- "PersonId": 382,
745
- "DisplayName": "Robert Sherry",
746
- "Pronouns": "He/Him",
747
- "ClubId": 17,
748
- "ShowData": true,
749
- "Club": {
750
- "Name": "No Club Affiliation ",
751
- "ShortName": "NoClub",
752
- "Images": []
753
- },
754
- "Images": []
755
- },
756
- "PoolId": 409,
757
- "PoolPosition": 37,
758
- "Seed": 37
759
- },
760
- {
761
- "Person": {
762
- "PersonId": 280,
763
- "DisplayName": "Robert Smith",
764
- "Pronouns": "He/Him",
765
- "ClubId": 47,
766
- "ShowData": true,
767
- "Club": {
768
- "Name": "Nickel City Longsword Academy",
769
- "ShortName": "NCLA",
770
- "Images": []
771
- },
772
- "Images": []
773
- },
774
- "PoolId": 409,
775
- "PoolPosition": 79,
776
- "Seed": 79
777
- }
778
- ],
779
- "BoutsLeft": 0,
780
- "TotalBouts": 0
781
- },
782
- {
783
- "PoolId": 410,
784
- "Name": "Pool 7",
785
- "RingName": "Ring 7",
786
- "Flight": 1,
787
- "PoolType": "pool",
788
- "EventId": 82,
789
- "Status": "preparation",
790
- "Updated": "2024-12-21T00:00:45.000Z",
791
- "Staff": [],
792
- "participants": [
793
- {
794
- "Person": {
795
- "PersonId": 388,
796
- "DisplayName": "Ian Lowry",
797
- "Pronouns": "He/Him",
798
- "ClubId": 75,
799
- "ShowData": true,
800
- "Club": {
801
- "Name": "Atlanta Historical Fencing Academy",
802
- "ShortName": "AHFA",
803
- "Images": []
804
- },
805
- "Images": []
806
- },
807
- "PoolId": 410,
808
- "PoolPosition": 35,
809
- "Seed": 35
810
- },
811
- {
812
- "Person": {
813
- "PersonId": 327,
814
- "DisplayName": "Kenneth Gudel",
815
- "Pronouns": "He/Him",
816
- "ClubId": 46,
817
- "ShowData": true,
818
- "Club": {
819
- "Name": "Capital Kunst Des Fechtens",
820
- "ShortName": "CKDF",
821
- "Images": []
822
- },
823
- "Images": []
824
- },
825
- "PoolId": 410,
826
- "PoolPosition": 77,
827
- "Seed": 77
828
- },
829
- {
830
- "Person": {
831
- "PersonId": 184,
832
- "DisplayName": "Connor KempCowell",
833
- "Pronouns": "He/Him",
834
- "ClubId": 49,
835
- "ShowData": true,
836
- "Club": {
837
- "Name": "Philadelphia Common Fencers Guild",
838
- "ShortName": "PCFG",
839
- "Images": []
840
- },
841
- "Images": []
842
- },
843
- "PoolId": 410,
844
- "PoolPosition": 7,
845
- "Seed": 7
846
- },
847
- {
848
- "Person": {
849
- "PersonId": 239,
850
- "DisplayName": "Robert Cheng",
851
- "Pronouns": "He/Him",
852
- "ClubId": 258,
853
- "ShowData": true,
854
- "Club": {
855
- "Name": "Montgomery County Historical Fencing",
856
- "ShortName": "MCHF",
857
- "Images": []
858
- },
859
- "Images": []
860
- },
861
- "PoolId": 410,
862
- "PoolPosition": 91,
863
- "Seed": 91
864
- },
865
- {
866
- "Person": {
867
- "PersonId": 168,
868
- "DisplayName": "Joseph Vervalin",
869
- "Pronouns": "He/Him",
870
- "ClubId": 30,
871
- "ShowData": true,
872
- "Club": {
873
- "Name": "Maryland Kunst Des Fechtens",
874
- "ShortName": "MKDF",
875
- "Images": []
876
- },
877
- "Images": []
878
- },
879
- "PoolId": 410,
880
- "PoolPosition": 78,
881
- "Seed": 78
882
- }
883
- ],
884
- "BoutsLeft": 0,
885
- "TotalBouts": 0
886
- },
887
- {
888
- "PoolId": 411,
889
- "Name": "Pool 8",
890
- "RingName": "Ring 8",
891
- "Flight": 1,
892
- "PoolType": "pool",
893
- "EventId": 82,
894
- "Status": "preparation",
895
- "Updated": "2024-12-21T00:00:45.000Z",
896
- "Staff": [],
897
- "participants": [
898
- {
899
- "Person": {
900
- "PersonId": 392,
901
- "DisplayName": "Nathan Grepares",
902
- "Pronouns": "",
903
- "ClubId": 78,
904
- "ShowData": true,
905
- "Club": {
906
- "Name": "Sword to Sword",
907
- "ShortName": "STS",
908
- "Images": []
909
- },
910
- "Images": []
911
- },
912
- "PoolId": 411,
913
- "PoolPosition": 9,
914
- "Seed": 9
915
- },
916
- {
917
- "Person": {
918
- "PersonId": 369,
919
- "DisplayName": "Jacob Baughn",
920
- "Pronouns": "He/Him",
921
- "ClubId": 76,
922
- "ShowData": true,
923
- "Club": {
924
- "Name": "Denver Historical Fencing Academy",
925
- "ShortName": "DHFA",
926
- "Images": []
927
- },
928
- "Images": []
929
- },
930
- "PoolId": 411,
931
- "PoolPosition": 51,
932
- "Seed": 51
933
- },
934
- {
935
- "Person": {
936
- "PersonId": 145,
937
- "DisplayName": "Jeffrey Will",
938
- "Pronouns": "He/Him",
939
- "ClubId": 62,
940
- "ShowData": true,
941
- "Club": {
942
- "Name": "Bucks Historical Longsword",
943
- "ShortName": "BHL",
944
- "Images": []
945
- },
946
- "Images": []
947
- },
948
- "PoolId": 411,
949
- "PoolPosition": 8,
950
- "Seed": 8
951
- },
952
- {
953
- "Person": {
954
- "PersonId": 416,
955
- "DisplayName": "Thomas Curtis",
956
- "Pronouns": "He/Him",
957
- "ClubId": 17,
958
- "ShowData": true,
959
- "Club": {
960
- "Name": "No Club Affiliation ",
961
- "ShortName": "NoClub",
962
- "Images": []
963
- },
964
- "Images": []
965
- },
966
- "PoolId": 411,
967
- "PoolPosition": 92,
968
- "Seed": 92
969
- },
970
- {
971
- "Person": {
972
- "PersonId": 331,
973
- "DisplayName": "Omkar Kale",
974
- "Pronouns": "He/Him",
975
- "ClubId": 109,
976
- "ShowData": true,
977
- "Club": {
978
- "Name": "Athena School of Arms",
979
- "ShortName": "ASoA",
980
- "Images": []
981
- },
982
- "Images": []
983
- },
984
- "PoolId": 411,
985
- "PoolPosition": 50,
986
- "Seed": 50
987
- }
988
- ],
989
- "BoutsLeft": 0,
990
- "TotalBouts": 0
991
- },
992
- {
993
- "PoolId": 412,
994
- "Name": "Pool 9",
995
- "RingName": "Ring 1",
996
- "Flight": 2,
997
- "PoolType": "pool",
998
- "EventId": 82,
999
- "Status": "preparation",
1000
- "Updated": "2024-12-21T00:00:45.000Z",
1001
- "Staff": [],
1002
- "participants": [
1003
- {
1004
- "Person": {
1005
- "PersonId": 374,
1006
- "DisplayName": "Pablo Illing",
1007
- "Pronouns": "He/Him",
1008
- "ClubId": 17,
1009
- "ShowData": true,
1010
- "Club": {
1011
- "Name": "No Club Affiliation ",
1012
- "ShortName": "NoClub",
1013
- "Images": []
1014
- },
1015
- "Images": []
1016
- },
1017
- "PoolId": 412,
1018
- "PoolPosition": 33,
1019
- "Seed": 33
1020
- },
1021
- {
1022
- "Person": {
1023
- "PersonId": 344,
1024
- "DisplayName": "Piotr Przanowski",
1025
- "Pronouns": "He/Him",
1026
- "ClubId": 264,
1027
- "ShowData": true,
1028
- "Club": {
1029
- "Name": "Bractwo Szermiercze",
1030
- "ShortName": "BSZ",
1031
- "Images": []
1032
- },
1033
- "Images": []
1034
- },
1035
- "PoolId": 412,
1036
- "PoolPosition": 10,
1037
- "Seed": 10
1038
- },
1039
- {
1040
- "Person": {
1041
- "PersonId": 366,
1042
- "DisplayName": "Rune Smith",
1043
- "Pronouns": "She/Her",
1044
- "ClubId": 205,
1045
- "ShowData": true,
1046
- "Club": {
1047
- "Name": "Battlefield KDF",
1048
- "ShortName": "BKdf",
1049
- "Images": []
1050
- },
1051
- "Images": []
1052
- },
1053
- "PoolId": 412,
1054
- "PoolPosition": 93,
1055
- "Seed": 93
1056
- },
1057
- {
1058
- "Person": {
1059
- "PersonId": 353,
1060
- "DisplayName": "KC Caswell",
1061
- "Pronouns": "He/Him",
1062
- "ClubId": 17,
1063
- "ShowData": true,
1064
- "Club": {
1065
- "Name": "No Club Affiliation ",
1066
- "ShortName": "NoClub",
1067
- "Images": []
1068
- },
1069
- "Images": []
1070
- },
1071
- "PoolId": 412,
1072
- "PoolPosition": 34,
1073
- "Seed": 34
1074
- },
1075
- {
1076
- "Person": {
1077
- "PersonId": 418,
1078
- "DisplayName": "Doug Trefun",
1079
- "Pronouns": "He/Him",
1080
- "ClubId": 257,
1081
- "ShowData": true,
1082
- "Club": {
1083
- "Name": "Tuathair Hema Academy",
1084
- "ShortName": "THA",
1085
- "Images": []
1086
- },
1087
- "Images": []
1088
- },
1089
- "PoolId": 412,
1090
- "PoolPosition": 76,
1091
- "Seed": 76
1092
- }
1093
- ],
1094
- "BoutsLeft": 0,
1095
- "TotalBouts": 0
1096
- },
1097
- {
1098
- "PoolId": 413,
1099
- "Name": "Pool 10",
1100
- "RingName": "Ring 2",
1101
- "Flight": 2,
1102
- "PoolType": "pool",
1103
- "EventId": 82,
1104
- "Status": "preparation",
1105
- "Updated": "2024-12-21T00:00:45.000Z",
1106
- "Staff": [],
1107
- "participants": [
1108
- {
1109
- "Person": {
1110
- "PersonId": 391,
1111
- "DisplayName": "James Leliveld",
1112
- "Pronouns": "He/Him",
1113
- "ClubId": 270,
1114
- "ShowData": true,
1115
- "Club": {
1116
- "Name": "Charlottesville HEMA",
1117
- "ShortName": "CSVH",
1118
- "Images": []
1119
- },
1120
- "Images": []
1121
- },
1122
- "PoolId": 413,
1123
- "PoolPosition": 73,
1124
- "Seed": 73
1125
- },
1126
- {
1127
- "Person": {
1128
- "PersonId": 274,
1129
- "DisplayName": "Jason Barrons",
1130
- "Pronouns": "He/Him",
1131
- "ClubId": 76,
1132
- "ShowData": true,
1133
- "Club": {
1134
- "Name": "Denver Historical Fencing Academy",
1135
- "ShortName": "DHFA",
1136
- "Images": []
1137
- },
1138
- "Images": []
1139
- },
1140
- "PoolId": 413,
1141
- "PoolPosition": 12,
1142
- "Seed": 12
1143
- },
1144
- {
1145
- "Person": {
1146
- "PersonId": 346,
1147
- "DisplayName": "Richard Escoto",
1148
- "Pronouns": "He/Him",
1149
- "ClubId": 75,
1150
- "ShowData": true,
1151
- "Club": {
1152
- "Name": "Atlanta Historical Fencing Academy",
1153
- "ShortName": "AHFA",
1154
- "Images": []
1155
- },
1156
- "Images": []
1157
- },
1158
- "PoolId": 413,
1159
- "PoolPosition": 52,
1160
- "Seed": 52
1161
- },
1162
- {
1163
- "Person": {
1164
- "PersonId": 411,
1165
- "DisplayName": "Kaz Strankowski",
1166
- "Pronouns": "He/Him",
1167
- "ClubId": 253,
1168
- "ShowData": true,
1169
- "Club": {
1170
- "Name": "Hudson Valley Fencing",
1171
- "ShortName": "HVF",
1172
- "Images": []
1173
- },
1174
- "Images": []
1175
- },
1176
- "PoolId": 413,
1177
- "PoolPosition": 94,
1178
- "Seed": 94
1179
- },
1180
- {
1181
- "Person": {
1182
- "PersonId": 277,
1183
- "DisplayName": "Shawn Harris",
1184
- "Pronouns": "He/Him",
1185
- "ClubId": 17,
1186
- "ShowData": true,
1187
- "Club": {
1188
- "Name": "No Club Affiliation ",
1189
- "ShortName": "NoClub",
1190
- "Images": []
1191
- },
1192
- "Images": []
1193
- },
1194
- "PoolId": 413,
1195
- "PoolPosition": 75,
1196
- "Seed": 75
1197
- }
1198
- ],
1199
- "BoutsLeft": 0,
1200
- "TotalBouts": 0
1201
- },
1202
- {
1203
- "PoolId": 414,
1204
- "Name": "Pool 12",
1205
- "RingName": "Ring 4",
1206
- "Flight": 2,
1207
- "PoolType": "pool",
1208
- "EventId": 82,
1209
- "Status": "preparation",
1210
- "Updated": "2024-12-21T00:00:45.000Z",
1211
- "Staff": [],
1212
- "participants": [
1213
- {
1214
- "Person": {
1215
- "PersonId": 273,
1216
- "DisplayName": "Thomas Pifer",
1217
- "Pronouns": "He/Him",
1218
- "ClubId": 83,
1219
- "ShowData": true,
1220
- "Club": {
1221
- "Name": "Metropolitan Historical Fencing Academy",
1222
- "ShortName": "MHFA",
1223
- "Images": []
1224
- },
1225
- "Images": []
1226
- },
1227
- "PoolId": 414,
1228
- "PoolPosition": 13,
1229
- "Seed": 13
1230
- },
1231
- {
1232
- "Person": {
1233
- "PersonId": 400,
1234
- "DisplayName": "Steven Hagan",
1235
- "Pronouns": "He/Him",
1236
- "ClubId": 86,
1237
- "ShowData": true,
1238
- "Club": {
1239
- "Name": "Schola St. George",
1240
- "ShortName": "SSG",
1241
- "Images": []
1242
- },
1243
- "Images": []
1244
- },
1245
- "PoolId": 414,
1246
- "PoolPosition": 97,
1247
- "Seed": 97
1248
- },
1249
- {
1250
- "Person": {
1251
- "PersonId": 269,
1252
- "DisplayName": "Paul Kartage",
1253
- "Pronouns": "He/Him",
1254
- "ClubId": 46,
1255
- "ShowData": true,
1256
- "Club": {
1257
- "Name": "Capital Kunst Des Fechtens",
1258
- "ShortName": "CKDF",
1259
- "Images": []
1260
- },
1261
- "Images": []
1262
- },
1263
- "PoolId": 414,
1264
- "PoolPosition": 54,
1265
- "Seed": 54
1266
- },
1267
- {
1268
- "Person": {
1269
- "PersonId": 361,
1270
- "DisplayName": "Heather O'Sullivan",
1271
- "Pronouns": "She/Her",
1272
- "ClubId": 17,
1273
- "ShowData": true,
1274
- "Club": {
1275
- "Name": "No Club Affiliation ",
1276
- "ShortName": "NoClub",
1277
- "Images": []
1278
- },
1279
- "Images": []
1280
- },
1281
- "PoolId": 414,
1282
- "PoolPosition": 96,
1283
- "Seed": 96
1284
- },
1285
- {
1286
- "Person": {
1287
- "PersonId": 236,
1288
- "DisplayName": "Nicholas Schneider",
1289
- "Pronouns": "He/Him",
1290
- "ClubId": 30,
1291
- "ShowData": true,
1292
- "Club": {
1293
- "Name": "Maryland Kunst Des Fechtens",
1294
- "ShortName": "MKDF",
1295
- "Images": []
1296
- },
1297
- "Images": []
1298
- },
1299
- "PoolId": 414,
1300
- "PoolPosition": 31,
1301
- "Seed": 31
1302
- }
1303
- ],
1304
- "BoutsLeft": 0,
1305
- "TotalBouts": 0
1306
- },
1307
- {
1308
- "PoolId": 415,
1309
- "Name": "Pool 13",
1310
- "RingName": "Ring 5",
1311
- "Flight": 2,
1312
- "PoolType": "pool",
1313
- "EventId": 82,
1314
- "Status": "preparation",
1315
- "Updated": "2024-12-21T00:00:46.000Z",
1316
- "Staff": [],
1317
- "participants": [
1318
- {
1319
- "Person": {
1320
- "PersonId": 347,
1321
- "DisplayName": "Paul Groover",
1322
- "Pronouns": "He/Him",
1323
- "ClubId": 75,
1324
- "ShowData": true,
1325
- "Club": {
1326
- "Name": "Atlanta Historical Fencing Academy",
1327
- "ShortName": "AHFA",
1328
- "Images": []
1329
- },
1330
- "Images": []
1331
- },
1332
- "PoolId": 415,
1333
- "PoolPosition": 15,
1334
- "Seed": 15
1335
- },
1336
- {
1337
- "Person": {
1338
- "PersonId": 403,
1339
- "DisplayName": "John Replogle",
1340
- "Pronouns": "He/Him",
1341
- "ClubId": 258,
1342
- "ShowData": true,
1343
- "Club": {
1344
- "Name": "Montgomery County Historical Fencing",
1345
- "ShortName": "MCHF",
1346
- "Images": []
1347
- },
1348
- "Images": []
1349
- },
1350
- "PoolId": 415,
1351
- "PoolPosition": 90,
1352
- "Seed": 90
1353
- },
1354
- {
1355
- "Person": {
1356
- "PersonId": 410,
1357
- "DisplayName": "River Furlow",
1358
- "Pronouns": "He/Him",
1359
- "ClubId": 17,
1360
- "ShowData": true,
1361
- "Club": {
1362
- "Name": "No Club Affiliation ",
1363
- "ShortName": "NoClub",
1364
- "Images": []
1365
- },
1366
- "Images": []
1367
- },
1368
- "PoolId": 415,
1369
- "PoolPosition": 72,
1370
- "Seed": 72
1371
- },
1372
- {
1373
- "Person": {
1374
- "PersonId": 104,
1375
- "DisplayName": "Matthew Huller",
1376
- "Pronouns": "He/Him",
1377
- "ClubId": 102,
1378
- "ShowData": true,
1379
- "Club": {
1380
- "Name": "Boston Armizare",
1381
- "ShortName": "BA",
1382
- "Images": []
1383
- },
1384
- "Images": []
1385
- },
1386
- "PoolId": 415,
1387
- "PoolPosition": 30,
1388
- "Seed": 30
1389
- },
1390
- {
1391
- "Person": {
1392
- "PersonId": 420,
1393
- "DisplayName": "Timothy Ware",
1394
- "Pronouns": "He/Him",
1395
- "ClubId": 17,
1396
- "ShowData": true,
1397
- "Club": {
1398
- "Name": "No Club Affiliation ",
1399
- "ShortName": "NoClub",
1400
- "Images": []
1401
- },
1402
- "Images": []
1403
- },
1404
- "PoolId": 415,
1405
- "PoolPosition": 55,
1406
- "Seed": 55
1407
- }
1408
- ],
1409
- "BoutsLeft": 0,
1410
- "TotalBouts": 0
1411
- },
1412
- {
1413
- "PoolId": 416,
1414
- "Name": "Pool 15",
1415
- "RingName": "Ring 7",
1416
- "Flight": 2,
1417
- "PoolType": "pool",
1418
- "EventId": 82,
1419
- "Status": "preparation",
1420
- "Updated": "2024-12-21T00:00:46.000Z",
1421
- "Staff": [],
1422
- "participants": [
1423
- {
1424
- "Person": {
1425
- "PersonId": 390,
1426
- "DisplayName": "Jim Brasefield",
1427
- "Pronouns": "He/Him",
1428
- "ClubId": 17,
1429
- "ShowData": true,
1430
- "Club": {
1431
- "Name": "No Club Affiliation ",
1432
- "ShortName": "NoClub",
1433
- "Images": []
1434
- },
1435
- "Images": []
1436
- },
1437
- "PoolId": 416,
1438
- "PoolPosition": 57,
1439
- "Seed": 57
1440
- },
1441
- {
1442
- "Person": {
1443
- "PersonId": 158,
1444
- "DisplayName": "Stevi Parker",
1445
- "Pronouns": "She/Her",
1446
- "ClubId": 62,
1447
- "ShowData": true,
1448
- "Club": {
1449
- "Name": "Bucks Historical Longsword",
1450
- "ShortName": "BHL",
1451
- "Images": []
1452
- },
1453
- "Images": []
1454
- },
1455
- "PoolId": 416,
1456
- "PoolPosition": 28,
1457
- "Seed": 28
1458
- },
1459
- {
1460
- "Person": {
1461
- "PersonId": 386,
1462
- "DisplayName": "Feiyu Xie",
1463
- "Pronouns": "He/Him",
1464
- "ClubId": 17,
1465
- "ShowData": true,
1466
- "Club": {
1467
- "Name": "No Club Affiliation ",
1468
- "ShortName": "NoClub",
1469
- "Images": []
1470
- },
1471
- "Images": []
1472
- },
1473
- "PoolId": 416,
1474
- "PoolPosition": 70,
1475
- "Seed": 70
1476
- },
1477
- {
1478
- "Person": {
1479
- "PersonId": 397,
1480
- "DisplayName": "Marshall Strong",
1481
- "Pronouns": "He/Him",
1482
- "ClubId": 55,
1483
- "ShowData": true,
1484
- "Club": {
1485
- "Name": "Silkfencing Team",
1486
- "ShortName": "ST",
1487
- "Images": []
1488
- },
1489
- "Images": []
1490
- },
1491
- "PoolId": 416,
1492
- "PoolPosition": 95,
1493
- "Seed": 95
1494
- },
1495
- {
1496
- "Person": {
1497
- "PersonId": 417,
1498
- "DisplayName": "Julie Olson",
1499
- "Pronouns": "She/Her",
1500
- "ClubId": 109,
1501
- "ShowData": true,
1502
- "Club": {
1503
- "Name": "Athena School of Arms",
1504
- "ShortName": "ASoA",
1505
- "Images": []
1506
- },
1507
- "Images": []
1508
- },
1509
- "PoolId": 416,
1510
- "PoolPosition": 99,
1511
- "Seed": 99
1512
- }
1513
- ],
1514
- "BoutsLeft": 0,
1515
- "TotalBouts": 0
1516
- },
1517
- {
1518
- "PoolId": 417,
1519
- "Name": "Pool 11",
1520
- "RingName": "Ring 3",
1521
- "Flight": 2,
1522
- "PoolType": "pool",
1523
- "EventId": 82,
1524
- "Status": "preparation",
1525
- "Updated": "2024-12-21T00:00:46.000Z",
1526
- "Staff": [],
1527
- "participants": [
1528
- {
1529
- "Person": {
1530
- "PersonId": 237,
1531
- "DisplayName": "Thomas Wall",
1532
- "Pronouns": "He/Him",
1533
- "ClubId": 258,
1534
- "ShowData": true,
1535
- "Club": {
1536
- "Name": "Montgomery County Historical Fencing",
1537
- "ShortName": "MCHF",
1538
- "Images": []
1539
- },
1540
- "Images": []
1541
- },
1542
- "PoolId": 417,
1543
- "PoolPosition": 71,
1544
- "Seed": 71
1545
- },
1546
- {
1547
- "Person": {
1548
- "PersonId": 375,
1549
- "DisplayName": "Peter Concannon",
1550
- "Pronouns": "He/Him",
1551
- "ClubId": 258,
1552
- "ShowData": true,
1553
- "Club": {
1554
- "Name": "Montgomery County Historical Fencing",
1555
- "ShortName": "MCHF",
1556
- "Images": []
1557
- },
1558
- "Images": []
1559
- },
1560
- "PoolId": 417,
1561
- "PoolPosition": 32,
1562
- "Seed": 32
1563
- },
1564
- {
1565
- "Person": {
1566
- "PersonId": 351,
1567
- "DisplayName": "Blaise Simpson",
1568
- "Pronouns": "He/Him",
1569
- "ClubId": 16,
1570
- "ShowData": true,
1571
- "Club": {
1572
- "Name": "Cymbrogi School of Western Martial Arts",
1573
- "ShortName": "CSoWM",
1574
- "Images": []
1575
- },
1576
- "Images": []
1577
- },
1578
- "PoolId": 417,
1579
- "PoolPosition": 74,
1580
- "Seed": 74
1581
- },
1582
- {
1583
- "Person": {
1584
- "PersonId": 380,
1585
- "DisplayName": "Ian Wilson",
1586
- "Pronouns": "He/Him",
1587
- "ClubId": 188,
1588
- "ShowData": true,
1589
- "Club": {
1590
- "Name": "Seven Swords Academy",
1591
- "ShortName": "SSA",
1592
- "Images": []
1593
- },
1594
- "Images": []
1595
- },
1596
- "PoolId": 417,
1597
- "PoolPosition": 53,
1598
- "Seed": 53
1599
- },
1600
- {
1601
- "Person": {
1602
- "PersonId": 330,
1603
- "DisplayName": "Derek Wise",
1604
- "Pronouns": "He/Him",
1605
- "ClubId": 102,
1606
- "ShowData": true,
1607
- "Club": {
1608
- "Name": "Boston Armizare",
1609
- "ShortName": "BA",
1610
- "Images": []
1611
- },
1612
- "Images": []
1613
- },
1614
- "PoolId": 417,
1615
- "PoolPosition": 11,
1616
- "Seed": 11
1617
- }
1618
- ],
1619
- "BoutsLeft": 0,
1620
- "TotalBouts": 0
1621
- },
1622
- {
1623
- "PoolId": 418,
1624
- "Name": "Pool 14",
1625
- "RingName": "Ring 6",
1626
- "Flight": 2,
1627
- "PoolType": "pool",
1628
- "EventId": 82,
1629
- "Status": "preparation",
1630
- "Updated": "2024-12-21T00:00:46.000Z",
1631
- "Staff": [],
1632
- "participants": [
1633
- {
1634
- "Person": {
1635
- "PersonId": 395,
1636
- "DisplayName": "Harley Jelis",
1637
- "Pronouns": "She/Her",
1638
- "ClubId": 65,
1639
- "ShowData": true,
1640
- "Club": {
1641
- "Name": "New York Historical Fencing Academy",
1642
- "ShortName": "NYHFA",
1643
- "Images": []
1644
- },
1645
- "Images": []
1646
- },
1647
- "PoolId": 418,
1648
- "PoolPosition": 27,
1649
- "Seed": 27
1650
- },
1651
- {
1652
- "Person": {
1653
- "PersonId": 337,
1654
- "DisplayName": "Youssef Jaafar",
1655
- "Pronouns": "He/Him",
1656
- "ClubId": 17,
1657
- "ShowData": true,
1658
- "Club": {
1659
- "Name": "No Club Affiliation ",
1660
- "ShortName": "NoClub",
1661
- "Images": []
1662
- },
1663
- "Images": []
1664
- },
1665
- "PoolId": 418,
1666
- "PoolPosition": 14,
1667
- "Seed": 14
1668
- },
1669
- {
1670
- "Person": {
1671
- "PersonId": 404,
1672
- "DisplayName": "Kainoa Chang",
1673
- "Pronouns": "He/Him",
1674
- "ClubId": 258,
1675
- "ShowData": true,
1676
- "Club": {
1677
- "Name": "Montgomery County Historical Fencing",
1678
- "ShortName": "MCHF",
1679
- "Images": []
1680
- },
1681
- "Images": []
1682
- },
1683
- "PoolId": 418,
1684
- "PoolPosition": 56,
1685
- "Seed": 56
1686
- },
1687
- {
1688
- "Person": {
1689
- "PersonId": 354,
1690
- "DisplayName": "Ashley Hearn",
1691
- "Pronouns": "She/Her",
1692
- "ClubId": 75,
1693
- "ShowData": true,
1694
- "Club": {
1695
- "Name": "Atlanta Historical Fencing Academy",
1696
- "ShortName": "AHFA",
1697
- "Images": []
1698
- },
1699
- "Images": []
1700
- },
1701
- "PoolId": 418,
1702
- "PoolPosition": 29,
1703
- "Seed": 29
1704
- },
1705
- {
1706
- "Person": {
1707
- "PersonId": 414,
1708
- "DisplayName": "William Thompson",
1709
- "Pronouns": "He/Him",
1710
- "ClubId": 75,
1711
- "ShowData": true,
1712
- "Club": {
1713
- "Name": "Atlanta Historical Fencing Academy",
1714
- "ShortName": "AHFA",
1715
- "Images": []
1716
- },
1717
- "Images": []
1718
- },
1719
- "PoolId": 418,
1720
- "PoolPosition": 98,
1721
- "Seed": 98
1722
- }
1723
- ],
1724
- "BoutsLeft": 0,
1725
- "TotalBouts": 0
1726
- },
1727
- {
1728
- "PoolId": 524,
1729
- "Name": "Pool 16",
1730
- "RingName": "Ring 8",
1731
- "Flight": 2,
1732
- "PoolType": "pool",
1733
- "EventId": 82,
1734
- "Status": "preparation",
1735
- "Updated": "2025-02-26T17:36:32.000Z",
1736
- "Staff": [],
1737
- "participants": [
1738
- {
1739
- "Person": {
1740
- "PersonId": 398,
1741
- "DisplayName": "James Davis",
1742
- "Pronouns": "He/Him",
1743
- "ClubId": 78,
1744
- "ShowData": true,
1745
- "Club": {
1746
- "Name": "Sword to Sword",
1747
- "ShortName": "STS",
1748
- "Images": []
1749
- },
1750
- "Images": []
1751
- },
1752
- "PoolId": 524,
1753
- "PoolPosition": 68,
1754
- "Seed": 68
1755
- },
1756
- {
1757
- "Person": {
1758
- "PersonId": 402,
1759
- "DisplayName": "Jacob McDonald",
1760
- "Pronouns": "He/Him",
1761
- "ClubId": 16,
1762
- "ShowData": true,
1763
- "Club": {
1764
- "Name": "Cymbrogi School of Western Martial Arts",
1765
- "ShortName": "CSoWM",
1766
- "Images": []
1767
- },
1768
- "Images": []
1769
- },
1770
- "PoolId": 524,
1771
- "PoolPosition": 16,
1772
- "Seed": 16
1773
- },
1774
- {
1775
- "Person": {
1776
- "PersonId": 372,
1777
- "DisplayName": "David Lillethun",
1778
- "Pronouns": "He/Him",
1779
- "ClubId": 86,
1780
- "ShowData": true,
1781
- "Club": {
1782
- "Name": "Schola St. George",
1783
- "ShortName": "SSG",
1784
- "Images": []
1785
- },
1786
- "Images": []
1787
- },
1788
- "PoolId": 524,
1789
- "PoolPosition": 69,
1790
- "Seed": 69
1791
- },
1792
- {
1793
- "Person": {
1794
- "PersonId": 406,
1795
- "DisplayName": "Christian Atos",
1796
- "Pronouns": "He/Him",
1797
- "ClubId": 30,
1798
- "ShowData": true,
1799
- "Club": {
1800
- "Name": "Maryland Kunst Des Fechtens",
1801
- "ShortName": "MKDF",
1802
- "Images": []
1803
- },
1804
- "Images": []
1805
- },
1806
- "PoolId": 524,
1807
- "PoolPosition": 58,
1808
- "Seed": 58
1809
- },
1810
- {
1811
- "Person": {
1812
- "PersonId": 373,
1813
- "DisplayName": "Padraig Stimac",
1814
- "Pronouns": "He/Him",
1815
- "ClubId": 86,
1816
- "ShowData": true,
1817
- "Club": {
1818
- "Name": "Schola St. George",
1819
- "ShortName": "SSG",
1820
- "Images": []
1821
- },
1822
- "Images": []
1823
- },
1824
- "PoolId": 524,
1825
- "PoolPosition": 100,
1826
- "Seed": 100
1827
- }
1828
- ],
1829
- "BoutsLeft": 0,
1830
- "TotalBouts": 0
1831
- },
1832
- {
1833
- "PoolId": 525,
1834
- "Name": "Pool 17",
1835
- "RingName": "Ring 1",
1836
- "Flight": 3,
1837
- "PoolType": "pool",
1838
- "EventId": 82,
1839
- "Status": "preparation",
1840
- "Updated": "2025-02-26T17:36:32.000Z",
1841
- "Staff": [],
1842
- "participants": [
1843
- {
1844
- "Person": {
1845
- "PersonId": 370,
1846
- "DisplayName": "Daniel Pierce",
1847
- "Pronouns": "He/Him",
1848
- "ClubId": 75,
1849
- "ShowData": true,
1850
- "Club": {
1851
- "Name": "Atlanta Historical Fencing Academy",
1852
- "ShortName": "AHFA",
1853
- "Images": []
1854
- },
1855
- "Images": []
1856
- },
1857
- "PoolId": 525,
1858
- "PoolPosition": 18,
1859
- "Seed": 18
1860
- },
1861
- {
1862
- "Person": {
1863
- "PersonId": 408,
1864
- "DisplayName": "Jonathan Rider",
1865
- "Pronouns": "He/Him",
1866
- "ClubId": 17,
1867
- "ShowData": true,
1868
- "Club": {
1869
- "Name": "No Club Affiliation ",
1870
- "ShortName": "NoClub",
1871
- "Images": []
1872
- },
1873
- "Images": []
1874
- },
1875
- "PoolId": 525,
1876
- "PoolPosition": 26,
1877
- "Seed": 26
1878
- },
1879
- {
1880
- "Person": {
1881
- "PersonId": 238,
1882
- "DisplayName": "Brent Wang",
1883
- "Pronouns": "He/Him",
1884
- "ClubId": 46,
1885
- "ShowData": true,
1886
- "Club": {
1887
- "Name": "Capital Kunst Des Fechtens",
1888
- "ShortName": "CKDF",
1889
- "Images": []
1890
- },
1891
- "Images": []
1892
- },
1893
- "PoolId": 525,
1894
- "PoolPosition": 59,
1895
- "Seed": 59
1896
- },
1897
- {
1898
- "Person": {
1899
- "PersonId": 384,
1900
- "DisplayName": "Trevor Jones",
1901
- "Pronouns": "He/Him",
1902
- "ClubId": 76,
1903
- "ShowData": true,
1904
- "Club": {
1905
- "Name": "Denver Historical Fencing Academy",
1906
- "ShortName": "DHFA",
1907
- "Images": []
1908
- },
1909
- "Images": []
1910
- },
1911
- "PoolId": 525,
1912
- "PoolPosition": 17,
1913
- "Seed": 17
1914
- },
1915
- {
1916
- "Person": {
1917
- "PersonId": 419,
1918
- "DisplayName": "Drake Stephens",
1919
- "Pronouns": "He/Him",
1920
- "ClubId": 75,
1921
- "ShowData": true,
1922
- "Club": {
1923
- "Name": "Atlanta Historical Fencing Academy",
1924
- "ShortName": "AHFA",
1925
- "Images": []
1926
- },
1927
- "Images": []
1928
- },
1929
- "PoolId": 525,
1930
- "PoolPosition": 101,
1931
- "Seed": 101
1932
- }
1933
- ],
1934
- "BoutsLeft": 0,
1935
- "TotalBouts": 0
1936
- },
1937
- {
1938
- "PoolId": 530,
1939
- "Name": "Pool 18",
1940
- "RingName": "Ring 2",
1941
- "Flight": 3,
1942
- "PoolType": "pool",
1943
- "EventId": 82,
1944
- "Status": "preparation",
1945
- "Updated": "2025-02-26T18:53:20.000Z",
1946
- "Staff": [],
1947
- "participants": [
1948
- {
1949
- "Person": {
1950
- "PersonId": 393,
1951
- "DisplayName": "Ian Larson",
1952
- "Pronouns": "He/Him",
1953
- "ClubId": 229,
1954
- "ShowData": true,
1955
- "Club": {
1956
- "Name": "Blacksburg Blades",
1957
- "ShortName": "BB",
1958
- "Images": []
1959
- },
1960
- "Images": []
1961
- },
1962
- "PoolId": 530,
1963
- "PoolPosition": 66,
1964
- "Seed": 66
1965
- },
1966
- {
1967
- "Person": {
1968
- "PersonId": 394,
1969
- "DisplayName": "Christopher Deraney",
1970
- "Pronouns": "He/Him",
1971
- "ClubId": 75,
1972
- "ShowData": true,
1973
- "Club": {
1974
- "Name": "Atlanta Historical Fencing Academy",
1975
- "ShortName": "AHFA",
1976
- "Images": []
1977
- },
1978
- "Images": []
1979
- },
1980
- "PoolId": 530,
1981
- "PoolPosition": 24,
1982
- "Seed": 24
1983
- },
1984
- {
1985
- "Person": {
1986
- "PersonId": 396,
1987
- "DisplayName": "Eric Musgrove",
1988
- "Pronouns": "He/Him",
1989
- "ClubId": 75,
1990
- "ShowData": true,
1991
- "Club": {
1992
- "Name": "Atlanta Historical Fencing Academy",
1993
- "ShortName": "AHFA",
1994
- "Images": []
1995
- },
1996
- "Images": []
1997
- },
1998
- "PoolId": 530,
1999
- "PoolPosition": 25,
2000
- "Seed": 25
2001
- },
2002
- {
2003
- "Person": {
2004
- "PersonId": 413,
2005
- "DisplayName": "Sean Pabers",
2006
- "Pronouns": "He/Him",
2007
- "ClubId": 17,
2008
- "ShowData": true,
2009
- "Club": {
2010
- "Name": "No Club Affiliation ",
2011
- "ShortName": "NoClub",
2012
- "Images": []
2013
- },
2014
- "Images": []
2015
- },
2016
- "PoolId": 530,
2017
- "PoolPosition": 67,
2018
- "Seed": 67
2019
- },
2020
- {
2021
- "Person": {
2022
- "PersonId": 415,
2023
- "DisplayName": "Alexander Szramoski",
2024
- "Pronouns": "He/Him",
2025
- "ClubId": 17,
2026
- "ShowData": true,
2027
- "Club": {
2028
- "Name": "No Club Affiliation ",
2029
- "ShortName": "NoClub",
2030
- "Images": []
2031
- },
2032
- "Images": []
2033
- },
2034
- "PoolId": 530,
2035
- "PoolPosition": 60,
2036
- "Seed": 60
2037
- }
2038
- ],
2039
- "BoutsLeft": 0,
2040
- "TotalBouts": 0
2041
- },
2042
- {
2043
- "PoolId": 531,
2044
- "Name": "Pool 19",
2045
- "RingName": "Ring 3",
2046
- "Flight": 3,
2047
- "PoolType": "pool",
2048
- "EventId": 82,
2049
- "Status": "preparation",
2050
- "Updated": "2025-02-26T18:53:20.000Z",
2051
- "Staff": [],
2052
- "participants": [
2053
- {
2054
- "Person": {
2055
- "PersonId": 142,
2056
- "DisplayName": "Andrew Bakry",
2057
- "Pronouns": "He/Him",
2058
- "ClubId": 30,
2059
- "ShowData": true,
2060
- "Club": {
2061
- "Name": "Maryland Kunst Des Fechtens",
2062
- "ShortName": "MKDF",
2063
- "Images": []
2064
- },
2065
- "Images": []
2066
- },
2067
- "PoolId": 531,
2068
- "PoolPosition": 62,
2069
- "Seed": 62
2070
- },
2071
- {
2072
- "Person": {
2073
- "PersonId": 328,
2074
- "DisplayName": "Tyler Jachetta",
2075
- "Pronouns": "He/Him",
2076
- "ClubId": 47,
2077
- "ShowData": true,
2078
- "Club": {
2079
- "Name": "Nickel City Longsword Academy",
2080
- "ShortName": "NCLA",
2081
- "Images": []
2082
- },
2083
- "Images": []
2084
- },
2085
- "PoolId": 531,
2086
- "PoolPosition": 65,
2087
- "Seed": 65
2088
- },
2089
- {
2090
- "Person": {
2091
- "PersonId": 343,
2092
- "DisplayName": "James Minnick",
2093
- "Pronouns": "He/Him",
2094
- "ClubId": 76,
2095
- "ShowData": true,
2096
- "Club": {
2097
- "Name": "Denver Historical Fencing Academy",
2098
- "ShortName": "DHFA",
2099
- "Images": []
2100
- },
2101
- "Images": []
2102
- },
2103
- "PoolId": 531,
2104
- "PoolPosition": 61,
2105
- "Seed": 61
2106
- },
2107
- {
2108
- "Person": {
2109
- "PersonId": 329,
2110
- "DisplayName": "Cameron Low",
2111
- "Pronouns": "He/Him",
2112
- "ClubId": 75,
2113
- "ShowData": true,
2114
- "Club": {
2115
- "Name": "Atlanta Historical Fencing Academy",
2116
- "ShortName": "AHFA",
2117
- "Images": []
2118
- },
2119
- "Images": []
2120
- },
2121
- "PoolId": 531,
2122
- "PoolPosition": 19,
2123
- "Seed": 19
2124
- },
2125
- {
2126
- "Person": {
2127
- "PersonId": 230,
2128
- "DisplayName": "Michael Tucker",
2129
- "Pronouns": "He/Him",
2130
- "ClubId": 257,
2131
- "ShowData": true,
2132
- "Club": {
2133
- "Name": "Tuathair Hema Academy",
2134
- "ShortName": "THA",
2135
- "Images": []
2136
- },
2137
- "Images": []
2138
- },
2139
- "PoolId": 531,
2140
- "PoolPosition": 20,
2141
- "Seed": 20
2142
- }
2143
- ],
2144
- "BoutsLeft": 0,
2145
- "TotalBouts": 0
2146
- },
2147
- {
2148
- "PoolId": 532,
2149
- "Name": "Pool 20",
2150
- "RingName": "Ring 4",
2151
- "Flight": 3,
2152
- "PoolType": "pool",
2153
- "EventId": 82,
2154
- "Status": "preparation",
2155
- "Updated": "2025-02-26T18:53:20.000Z",
2156
- "Staff": [],
2157
- "participants": [],
2158
- "BoutsLeft": 0,
2159
- "TotalBouts": 0
2160
- },
2161
- {
2162
- "PoolId": 533,
2163
- "Name": "Pool 21",
2164
- "RingName": "Ring 5",
2165
- "Flight": 3,
2166
- "PoolType": "pool",
2167
- "EventId": 82,
2168
- "Status": "preparation",
2169
- "Updated": "2025-02-26T18:53:20.000Z",
2170
- "Staff": [],
2171
- "participants": [
2172
- {
2173
- "Person": {
2174
- "PersonId": 399,
2175
- "DisplayName": "Henry Reynolds",
2176
- "Pronouns": "He/Him",
2177
- "ClubId": 62,
2178
- "ShowData": true,
2179
- "Club": {
2180
- "Name": "Bucks Historical Longsword",
2181
- "ShortName": "BHL",
2182
- "Images": []
2183
- },
2184
- "Images": []
2185
- },
2186
- "PoolId": 533,
2187
- "PoolPosition": 21,
2188
- "Seed": 21
2189
- },
2190
- {
2191
- "Person": {
2192
- "PersonId": 141,
2193
- "DisplayName": "Joseph Lilly",
2194
- "Pronouns": "He/Him",
2195
- "ClubId": 46,
2196
- "ShowData": true,
2197
- "Club": {
2198
- "Name": "Capital Kunst Des Fechtens",
2199
- "ShortName": "CKDF",
2200
- "Images": []
2201
- },
2202
- "Images": []
2203
- },
2204
- "PoolId": 533,
2205
- "PoolPosition": 22,
2206
- "Seed": 22
2207
- },
2208
- {
2209
- "Person": {
2210
- "PersonId": 223,
2211
- "DisplayName": "Bryan Taylor",
2212
- "Pronouns": "He/Him",
2213
- "ClubId": 257,
2214
- "ShowData": true,
2215
- "Club": {
2216
- "Name": "Tuathair Hema Academy",
2217
- "ShortName": "THA",
2218
- "Images": []
2219
- },
2220
- "Images": []
2221
- },
2222
- "PoolId": 533,
2223
- "PoolPosition": 63,
2224
- "Seed": 63
2225
- },
2226
- {
2227
- "Person": {
2228
- "PersonId": 412,
2229
- "DisplayName": "Kristopher Micozzi",
2230
- "Pronouns": "He/Him",
2231
- "ClubId": 297,
2232
- "ShowData": true,
2233
- "Club": {
2234
- "Name": "Sacramento Historical Fencing Academy",
2235
- "ShortName": "SHFA",
2236
- "Images": []
2237
- },
2238
- "Images": []
2239
- },
2240
- "PoolId": 533,
2241
- "PoolPosition": 64,
2242
- "Seed": 64
2243
- },
2244
- {
2245
- "Person": {
2246
- "PersonId": 196,
2247
- "DisplayName": "Stephen Dougherty",
2248
- "Pronouns": "He/Him",
2249
- "ClubId": 34,
2250
- "ShowData": true,
2251
- "Club": {
2252
- "Name": "Medieval European Martial Arts Guild",
2253
- "ShortName": "MEMAG",
2254
- "Images": []
2255
- },
2256
- "Images": []
2257
- },
2258
- "PoolId": 533,
2259
- "PoolPosition": 23,
2260
- "Seed": 23
2261
- }
2262
- ],
2263
- "BoutsLeft": 0,
2264
- "TotalBouts": 0
2265
- }
2266
- ],
2267
- "staff": []
2268
- };
134
+ PoolId: 404,
135
+ Name: 'Pool 1',
136
+ RingName: 'Ring 1',
137
+ Flight: 1,
138
+ PoolType: 'pool',
139
+ EventId: 82,
140
+ Status: 'custom',
141
+ Updated: '2024-12-21T00:00:45.000Z',
142
+ Staff: [],
143
+ participants: [
144
+ {
145
+ Person: {
146
+ PersonId: 339,
147
+ DisplayName: 'Michael Creech',
148
+ Pronouns: 'He/Him',
149
+ ClubId: 46,
150
+ ShowData: true,
151
+ Club: {
152
+ Name: 'Capital Kunst Des Fechtens',
153
+ ShortName: 'CKDF',
154
+ Images: []
155
+ },
156
+ Images: []
157
+ },
158
+ PoolId: 404,
159
+ PoolPosition: 86,
160
+ Seed: 86
161
+ },
162
+ {
163
+ Person: {
164
+ PersonId: 325,
165
+ DisplayName: 'Stephen Cheney',
166
+ Pronouns: 'He/Him',
167
+ ClubId: 62,
168
+ ShowData: true,
169
+ Club: {
170
+ Name: 'Bucks Historical Longsword',
171
+ ShortName: 'BHL',
172
+ Images: []
173
+ },
174
+ Images: []
175
+ },
176
+ PoolId: 404,
177
+ PoolPosition: 1,
178
+ Seed: 1
179
+ },
180
+ {
181
+ Person: {
182
+ PersonId: 368,
183
+ DisplayName: 'Chris Szutenbach-Gallo',
184
+ Pronouns: 'He/Him',
185
+ ClubId: 58,
186
+ ShowData: true,
187
+ Club: {
188
+ Name: 'Mid-Atlantic Society for Historic Swordsmanship',
189
+ ShortName: 'MASHS',
190
+ Images: []
191
+ },
192
+ Images: []
193
+ },
194
+ PoolId: 404,
195
+ PoolPosition: 42,
196
+ Seed: 42
197
+ },
198
+ {
199
+ Person: {
200
+ PersonId: 407,
201
+ DisplayName: 'Lee Kristensen',
202
+ Pronouns: 'He/Him',
203
+ ClubId: 75,
204
+ ShowData: true,
205
+ Club: {
206
+ Name: 'Atlanta Historical Fencing Academy',
207
+ ShortName: 'AHFA',
208
+ Images: []
209
+ },
210
+ Images: []
211
+ },
212
+ PoolId: 404,
213
+ PoolPosition: 43,
214
+ Seed: 43
215
+ },
216
+ {
217
+ Person: {
218
+ PersonId: 358,
219
+ DisplayName: 'Storm Pulikkathara',
220
+ Pronouns: 'She/Her',
221
+ ClubId: 17,
222
+ ShowData: true,
223
+ Club: {
224
+ Name: 'No Club Affiliation ',
225
+ ShortName: 'NoClub',
226
+ Images: []
227
+ },
228
+ Images: []
229
+ },
230
+ PoolId: 404,
231
+ PoolPosition: 84,
232
+ Seed: 84
233
+ },
234
+ {
235
+ Person: {
236
+ PersonId: 359,
237
+ DisplayName: 'Leila Bobrow',
238
+ Pronouns: 'She/Her',
239
+ ClubId: 30,
240
+ ShowData: true,
241
+ Club: {
242
+ Name: 'Maryland Kunst Des Fechtens',
243
+ ShortName: 'MKDF',
244
+ Images: []
245
+ },
246
+ Images: []
247
+ },
248
+ PoolId: 404,
249
+ PoolPosition: 85,
250
+ Seed: 85
251
+ }
252
+ ],
253
+ BoutsLeft: 0,
254
+ TotalBouts: 0
255
+ },
256
+ {
257
+ PoolId: 405,
258
+ Name: 'Pool 2',
259
+ RingName: 'Ring 2',
260
+ Flight: 1,
261
+ PoolType: 'pool',
262
+ EventId: 82,
263
+ Status: 'preparation',
264
+ Updated: '2024-12-21T00:00:45.000Z',
265
+ Staff: [],
266
+ participants: [
267
+ {
268
+ Person: {
269
+ PersonId: 387,
270
+ DisplayName: 'Arto Fama',
271
+ Pronouns: 'He/Him',
272
+ ClubId: 272,
273
+ ShowData: true,
274
+ Club: {
275
+ Name: 'Zwaard & Steen',
276
+ ShortName: null,
277
+ Images: []
278
+ },
279
+ Images: []
280
+ },
281
+ PoolId: 405,
282
+ PoolPosition: 3,
283
+ Seed: 3
284
+ },
285
+ {
286
+ Person: {
287
+ PersonId: 401,
288
+ DisplayName: 'Benjamin Aycrigg',
289
+ Pronouns: 'He/Him',
290
+ ClubId: 75,
291
+ ShowData: true,
292
+ Club: {
293
+ Name: 'Atlanta Historical Fencing Academy',
294
+ ShortName: 'AHFA',
295
+ Images: []
296
+ },
297
+ Images: []
298
+ },
299
+ PoolId: 405,
300
+ PoolPosition: 2,
301
+ Seed: 2
302
+ },
303
+ {
304
+ Person: {
305
+ PersonId: 383,
306
+ DisplayName: 'Dustin Collier',
307
+ Pronouns: 'He/Him',
308
+ ClubId: 52,
309
+ ShowData: true,
310
+ Club: {
311
+ Name: 'Virginia Academy Of Fencing',
312
+ ShortName: 'VAF',
313
+ Images: []
314
+ },
315
+ Images: []
316
+ },
317
+ PoolId: 405,
318
+ PoolPosition: 41,
319
+ Seed: 41
320
+ },
321
+ {
322
+ Person: {
323
+ PersonId: 405,
324
+ DisplayName: 'Rohit Mathilakath',
325
+ Pronouns: 'He/Him',
326
+ ClubId: 78,
327
+ ShowData: true,
328
+ Club: {
329
+ Name: 'Sword to Sword',
330
+ ShortName: 'STS',
331
+ Images: []
332
+ },
333
+ Images: []
334
+ },
335
+ PoolId: 405,
336
+ PoolPosition: 44,
337
+ Seed: 44
338
+ },
339
+ {
340
+ Person: {
341
+ PersonId: 376,
342
+ DisplayName: 'Kyle Crandall',
343
+ Pronouns: 'He/Him',
344
+ ClubId: 46,
345
+ ShowData: true,
346
+ Club: {
347
+ Name: 'Capital Kunst Des Fechtens',
348
+ ShortName: 'CKDF',
349
+ Images: []
350
+ },
351
+ Images: []
352
+ },
353
+ PoolId: 405,
354
+ PoolPosition: 83,
355
+ Seed: 83
356
+ }
357
+ ],
358
+ BoutsLeft: 0,
359
+ TotalBouts: 0
360
+ },
361
+ {
362
+ PoolId: 406,
363
+ Name: 'Pool 3',
364
+ RingName: 'Ring 3',
365
+ Flight: 1,
366
+ PoolType: 'pool',
367
+ EventId: 82,
368
+ Status: 'preparation',
369
+ Updated: '2024-12-21T00:00:45.000Z',
370
+ Staff: [],
371
+ participants: [
372
+ {
373
+ Person: {
374
+ PersonId: 235,
375
+ DisplayName: 'Genevieve Kelly',
376
+ Pronouns: 'She/Her',
377
+ ClubId: 307,
378
+ ShowData: true,
379
+ Club: {
380
+ Name: 'Scuffletown Federfechters',
381
+ ShortName: null,
382
+ Images: []
383
+ },
384
+ Images: []
385
+ },
386
+ PoolId: 406,
387
+ PoolPosition: 39,
388
+ Seed: 39
389
+ },
390
+ {
391
+ Person: {
392
+ PersonId: 389,
393
+ DisplayName: 'Benjamin Ware',
394
+ Pronouns: 'He/Him',
395
+ ClubId: 17,
396
+ ShowData: true,
397
+ Club: {
398
+ Name: 'No Club Affiliation ',
399
+ ShortName: 'NoClub',
400
+ Images: []
401
+ },
402
+ Images: []
403
+ },
404
+ PoolId: 406,
405
+ PoolPosition: 87,
406
+ Seed: 87
407
+ },
408
+ {
409
+ Person: {
410
+ PersonId: 284,
411
+ DisplayName: 'Matthew Miraglia',
412
+ Pronouns: 'He/Him',
413
+ ClubId: 17,
414
+ ShowData: true,
415
+ Club: {
416
+ Name: 'No Club Affiliation ',
417
+ ShortName: 'NoClub',
418
+ Images: []
419
+ },
420
+ Images: []
421
+ },
422
+ PoolId: 406,
423
+ PoolPosition: 40,
424
+ Seed: 40
425
+ },
426
+ {
427
+ Person: {
428
+ PersonId: 240,
429
+ DisplayName: 'Henry Kenyon',
430
+ Pronouns: 'He/Him',
431
+ ClubId: 46,
432
+ ShowData: true,
433
+ Club: {
434
+ Name: 'Capital Kunst Des Fechtens',
435
+ ShortName: 'CKDF',
436
+ Images: []
437
+ },
438
+ Images: []
439
+ },
440
+ PoolId: 406,
441
+ PoolPosition: 82,
442
+ Seed: 82
443
+ },
444
+ {
445
+ Person: {
446
+ PersonId: 385,
447
+ DisplayName: 'John Thomas',
448
+ Pronouns: 'He/Him',
449
+ ClubId: 17,
450
+ ShowData: true,
451
+ Club: {
452
+ Name: 'No Club Affiliation ',
453
+ ShortName: 'NoClub',
454
+ Images: []
455
+ },
456
+ Images: []
457
+ },
458
+ PoolId: 406,
459
+ PoolPosition: 45,
460
+ Seed: 45
461
+ }
462
+ ],
463
+ BoutsLeft: 0,
464
+ TotalBouts: 0
465
+ },
466
+ {
467
+ PoolId: 407,
468
+ Name: 'Pool 4',
469
+ RingName: 'Ring 4',
470
+ Flight: 1,
471
+ PoolType: 'pool',
472
+ EventId: 82,
473
+ Status: 'preparation',
474
+ Updated: '2024-12-21T00:00:45.000Z',
475
+ Staff: [],
476
+ participants: [
477
+ {
478
+ Person: {
479
+ PersonId: 352,
480
+ DisplayName: 'Andrew Gleason',
481
+ Pronouns: 'He/Him',
482
+ ClubId: 102,
483
+ ShowData: true,
484
+ Club: {
485
+ Name: 'Boston Armizare',
486
+ ShortName: 'BA',
487
+ Images: []
488
+ },
489
+ Images: []
490
+ },
491
+ PoolId: 407,
492
+ PoolPosition: 47,
493
+ Seed: 47
494
+ },
495
+ {
496
+ Person: {
497
+ PersonId: 242,
498
+ DisplayName: 'Zach Showalter',
499
+ Pronouns: 'He/Him',
500
+ ClubId: 259,
501
+ ShowData: true,
502
+ Club: {
503
+ Name: 'Richmond Fencing Club',
504
+ ShortName: 'RFC',
505
+ Images: []
506
+ },
507
+ Images: []
508
+ },
509
+ PoolId: 407,
510
+ PoolPosition: 4,
511
+ Seed: 4
512
+ },
513
+ {
514
+ Person: {
515
+ PersonId: 367,
516
+ DisplayName: 'Craig Kellner',
517
+ Pronouns: 'He/Him',
518
+ ClubId: 46,
519
+ ShowData: true,
520
+ Club: {
521
+ Name: 'Capital Kunst Des Fechtens',
522
+ ShortName: 'CKDF',
523
+ Images: []
524
+ },
525
+ Images: []
526
+ },
527
+ PoolId: 407,
528
+ PoolPosition: 46,
529
+ Seed: 46
530
+ },
531
+ {
532
+ Person: {
533
+ PersonId: 409,
534
+ DisplayName: 'Neil Satterlund',
535
+ Pronouns: 'He/Him',
536
+ ClubId: 17,
537
+ ShowData: true,
538
+ Club: {
539
+ Name: 'No Club Affiliation ',
540
+ ShortName: 'NoClub',
541
+ Images: []
542
+ },
543
+ Images: []
544
+ },
545
+ PoolId: 407,
546
+ PoolPosition: 88,
547
+ Seed: 88
548
+ },
549
+ {
550
+ Person: {
551
+ PersonId: 177,
552
+ DisplayName: 'Alyssa Capel',
553
+ Pronouns: 'She/Her',
554
+ ClubId: 62,
555
+ ShowData: true,
556
+ Club: {
557
+ Name: 'Bucks Historical Longsword',
558
+ ShortName: 'BHL',
559
+ Images: []
560
+ },
561
+ Images: []
562
+ },
563
+ PoolId: 407,
564
+ PoolPosition: 81,
565
+ Seed: 81
566
+ }
567
+ ],
568
+ BoutsLeft: 0,
569
+ TotalBouts: 0
570
+ },
571
+ {
572
+ PoolId: 408,
573
+ Name: 'Pool 5',
574
+ RingName: 'Ring 5',
575
+ Flight: 1,
576
+ PoolType: 'pool',
577
+ EventId: 82,
578
+ Status: 'preparation',
579
+ Updated: '2024-12-21T00:00:45.000Z',
580
+ Staff: [],
581
+ participants: [
582
+ {
583
+ Person: {
584
+ PersonId: 371,
585
+ DisplayName: 'Avery Barnard',
586
+ Pronouns: 'He/Him',
587
+ ClubId: 258,
588
+ ShowData: true,
589
+ Club: {
590
+ Name: 'Montgomery County Historical Fencing',
591
+ ShortName: 'MCHF',
592
+ Images: []
593
+ },
594
+ Images: []
595
+ },
596
+ PoolId: 408,
597
+ PoolPosition: 89,
598
+ Seed: 89
599
+ },
600
+ {
601
+ Person: {
602
+ PersonId: 182,
603
+ DisplayName: 'Jonathan Paulino',
604
+ Pronouns: 'He/Him',
605
+ ClubId: 49,
606
+ ShowData: true,
607
+ Club: {
608
+ Name: 'Philadelphia Common Fencers Guild',
609
+ ShortName: 'PCFG',
610
+ Images: []
611
+ },
612
+ Images: []
613
+ },
614
+ PoolId: 408,
615
+ PoolPosition: 5,
616
+ Seed: 5
617
+ },
618
+ {
619
+ Person: {
620
+ PersonId: 340,
621
+ DisplayName: 'Fernan Gomez-Monedero',
622
+ Pronouns: 'He/Him',
623
+ ClubId: 109,
624
+ ShowData: true,
625
+ Club: {
626
+ Name: 'Athena School of Arms',
627
+ ShortName: 'ASoA',
628
+ Images: []
629
+ },
630
+ Images: []
631
+ },
632
+ PoolId: 408,
633
+ PoolPosition: 80,
634
+ Seed: 80
635
+ },
636
+ {
637
+ Person: {
638
+ PersonId: 349,
639
+ DisplayName: 'Bradley Smith',
640
+ Pronouns: 'He/Him',
641
+ ClubId: 76,
642
+ ShowData: true,
643
+ Club: {
644
+ Name: 'Denver Historical Fencing Academy',
645
+ ShortName: 'DHFA',
646
+ Images: []
647
+ },
648
+ Images: []
649
+ },
650
+ PoolId: 408,
651
+ PoolPosition: 6,
652
+ Seed: 6
653
+ },
654
+ {
655
+ Person: {
656
+ PersonId: 335,
657
+ DisplayName: 'Steven Obrzut',
658
+ Pronouns: 'He/Him',
659
+ ClubId: 104,
660
+ ShowData: true,
661
+ Club: {
662
+ Name: 'True Edge Academy of Swordsmanship',
663
+ ShortName: 'TEAoS',
664
+ Images: []
665
+ },
666
+ Images: []
667
+ },
668
+ PoolId: 408,
669
+ PoolPosition: 38,
670
+ Seed: 38
671
+ }
672
+ ],
673
+ BoutsLeft: 0,
674
+ TotalBouts: 0
675
+ },
676
+ {
677
+ PoolId: 409,
678
+ Name: 'Pool 6',
679
+ RingName: 'Ring 6',
680
+ Flight: 1,
681
+ PoolType: 'pool',
682
+ EventId: 82,
683
+ Status: 'preparation',
684
+ Updated: '2024-12-21T00:00:45.000Z',
685
+ Staff: [],
686
+ participants: [
687
+ {
688
+ Person: {
689
+ PersonId: 148,
690
+ DisplayName: 'Camilla Fraizer ',
691
+ Pronouns: 'She/Her',
692
+ ClubId: 17,
693
+ ShowData: true,
694
+ Club: {
695
+ Name: 'No Club Affiliation ',
696
+ ShortName: 'NoClub',
697
+ Images: []
698
+ },
699
+ Images: []
700
+ },
701
+ PoolId: 409,
702
+ PoolPosition: 36,
703
+ Seed: 36
704
+ },
705
+ {
706
+ Person: {
707
+ PersonId: 377,
708
+ DisplayName: 'Jarred Thompson',
709
+ Pronouns: 'He/Him',
710
+ ClubId: 75,
711
+ ShowData: true,
712
+ Club: {
713
+ Name: 'Atlanta Historical Fencing Academy',
714
+ ShortName: 'AHFA',
715
+ Images: []
716
+ },
717
+ Images: []
718
+ },
719
+ PoolId: 409,
720
+ PoolPosition: 49,
721
+ Seed: 49
722
+ },
723
+ {
724
+ Person: {
725
+ PersonId: 12,
726
+ DisplayName: 'Lindsey Mitchell',
727
+ Pronouns: 'They/Them',
728
+ ClubId: 17,
729
+ ShowData: true,
730
+ Club: {
731
+ Name: 'No Club Affiliation ',
732
+ ShortName: 'NoClub',
733
+ Images: []
734
+ },
735
+ Images: []
736
+ },
737
+ PoolId: 409,
738
+ PoolPosition: 48,
739
+ Seed: 48
740
+ },
741
+ {
742
+ Person: {
743
+ PersonId: 382,
744
+ DisplayName: 'Robert Sherry',
745
+ Pronouns: 'He/Him',
746
+ ClubId: 17,
747
+ ShowData: true,
748
+ Club: {
749
+ Name: 'No Club Affiliation ',
750
+ ShortName: 'NoClub',
751
+ Images: []
752
+ },
753
+ Images: []
754
+ },
755
+ PoolId: 409,
756
+ PoolPosition: 37,
757
+ Seed: 37
758
+ },
759
+ {
760
+ Person: {
761
+ PersonId: 280,
762
+ DisplayName: 'Robert Smith',
763
+ Pronouns: 'He/Him',
764
+ ClubId: 47,
765
+ ShowData: true,
766
+ Club: {
767
+ Name: 'Nickel City Longsword Academy',
768
+ ShortName: 'NCLA',
769
+ Images: []
770
+ },
771
+ Images: []
772
+ },
773
+ PoolId: 409,
774
+ PoolPosition: 79,
775
+ Seed: 79
776
+ }
777
+ ],
778
+ BoutsLeft: 0,
779
+ TotalBouts: 0
780
+ },
781
+ {
782
+ PoolId: 410,
783
+ Name: 'Pool 7',
784
+ RingName: 'Ring 7',
785
+ Flight: 1,
786
+ PoolType: 'pool',
787
+ EventId: 82,
788
+ Status: 'preparation',
789
+ Updated: '2024-12-21T00:00:45.000Z',
790
+ Staff: [],
791
+ participants: [
792
+ {
793
+ Person: {
794
+ PersonId: 388,
795
+ DisplayName: 'Ian Lowry',
796
+ Pronouns: 'He/Him',
797
+ ClubId: 75,
798
+ ShowData: true,
799
+ Club: {
800
+ Name: 'Atlanta Historical Fencing Academy',
801
+ ShortName: 'AHFA',
802
+ Images: []
803
+ },
804
+ Images: []
805
+ },
806
+ PoolId: 410,
807
+ PoolPosition: 35,
808
+ Seed: 35
809
+ },
810
+ {
811
+ Person: {
812
+ PersonId: 327,
813
+ DisplayName: 'Kenneth Gudel',
814
+ Pronouns: 'He/Him',
815
+ ClubId: 46,
816
+ ShowData: true,
817
+ Club: {
818
+ Name: 'Capital Kunst Des Fechtens',
819
+ ShortName: 'CKDF',
820
+ Images: []
821
+ },
822
+ Images: []
823
+ },
824
+ PoolId: 410,
825
+ PoolPosition: 77,
826
+ Seed: 77
827
+ },
828
+ {
829
+ Person: {
830
+ PersonId: 184,
831
+ DisplayName: 'Connor KempCowell',
832
+ Pronouns: 'He/Him',
833
+ ClubId: 49,
834
+ ShowData: true,
835
+ Club: {
836
+ Name: 'Philadelphia Common Fencers Guild',
837
+ ShortName: 'PCFG',
838
+ Images: []
839
+ },
840
+ Images: []
841
+ },
842
+ PoolId: 410,
843
+ PoolPosition: 7,
844
+ Seed: 7
845
+ },
846
+ {
847
+ Person: {
848
+ PersonId: 239,
849
+ DisplayName: 'Robert Cheng',
850
+ Pronouns: 'He/Him',
851
+ ClubId: 258,
852
+ ShowData: true,
853
+ Club: {
854
+ Name: 'Montgomery County Historical Fencing',
855
+ ShortName: 'MCHF',
856
+ Images: []
857
+ },
858
+ Images: []
859
+ },
860
+ PoolId: 410,
861
+ PoolPosition: 91,
862
+ Seed: 91
863
+ },
864
+ {
865
+ Person: {
866
+ PersonId: 168,
867
+ DisplayName: 'Joseph Vervalin',
868
+ Pronouns: 'He/Him',
869
+ ClubId: 30,
870
+ ShowData: true,
871
+ Club: {
872
+ Name: 'Maryland Kunst Des Fechtens',
873
+ ShortName: 'MKDF',
874
+ Images: []
875
+ },
876
+ Images: []
877
+ },
878
+ PoolId: 410,
879
+ PoolPosition: 78,
880
+ Seed: 78
881
+ }
882
+ ],
883
+ BoutsLeft: 0,
884
+ TotalBouts: 0
885
+ },
886
+ {
887
+ PoolId: 411,
888
+ Name: 'Pool 8',
889
+ RingName: 'Ring 8',
890
+ Flight: 1,
891
+ PoolType: 'pool',
892
+ EventId: 82,
893
+ Status: 'preparation',
894
+ Updated: '2024-12-21T00:00:45.000Z',
895
+ Staff: [],
896
+ participants: [
897
+ {
898
+ Person: {
899
+ PersonId: 392,
900
+ DisplayName: 'Nathan Grepares',
901
+ Pronouns: '',
902
+ ClubId: 78,
903
+ ShowData: true,
904
+ Club: {
905
+ Name: 'Sword to Sword',
906
+ ShortName: 'STS',
907
+ Images: []
908
+ },
909
+ Images: []
910
+ },
911
+ PoolId: 411,
912
+ PoolPosition: 9,
913
+ Seed: 9
914
+ },
915
+ {
916
+ Person: {
917
+ PersonId: 369,
918
+ DisplayName: 'Jacob Baughn',
919
+ Pronouns: 'He/Him',
920
+ ClubId: 76,
921
+ ShowData: true,
922
+ Club: {
923
+ Name: 'Denver Historical Fencing Academy',
924
+ ShortName: 'DHFA',
925
+ Images: []
926
+ },
927
+ Images: []
928
+ },
929
+ PoolId: 411,
930
+ PoolPosition: 51,
931
+ Seed: 51
932
+ },
933
+ {
934
+ Person: {
935
+ PersonId: 145,
936
+ DisplayName: 'Jeffrey Will',
937
+ Pronouns: 'He/Him',
938
+ ClubId: 62,
939
+ ShowData: true,
940
+ Club: {
941
+ Name: 'Bucks Historical Longsword',
942
+ ShortName: 'BHL',
943
+ Images: []
944
+ },
945
+ Images: []
946
+ },
947
+ PoolId: 411,
948
+ PoolPosition: 8,
949
+ Seed: 8
950
+ },
951
+ {
952
+ Person: {
953
+ PersonId: 416,
954
+ DisplayName: 'Thomas Curtis',
955
+ Pronouns: 'He/Him',
956
+ ClubId: 17,
957
+ ShowData: true,
958
+ Club: {
959
+ Name: 'No Club Affiliation ',
960
+ ShortName: 'NoClub',
961
+ Images: []
962
+ },
963
+ Images: []
964
+ },
965
+ PoolId: 411,
966
+ PoolPosition: 92,
967
+ Seed: 92
968
+ },
969
+ {
970
+ Person: {
971
+ PersonId: 331,
972
+ DisplayName: 'Omkar Kale',
973
+ Pronouns: 'He/Him',
974
+ ClubId: 109,
975
+ ShowData: true,
976
+ Club: {
977
+ Name: 'Athena School of Arms',
978
+ ShortName: 'ASoA',
979
+ Images: []
980
+ },
981
+ Images: []
982
+ },
983
+ PoolId: 411,
984
+ PoolPosition: 50,
985
+ Seed: 50
986
+ }
987
+ ],
988
+ BoutsLeft: 0,
989
+ TotalBouts: 0
990
+ },
991
+ {
992
+ PoolId: 412,
993
+ Name: 'Pool 9',
994
+ RingName: 'Ring 1',
995
+ Flight: 2,
996
+ PoolType: 'pool',
997
+ EventId: 82,
998
+ Status: 'preparation',
999
+ Updated: '2024-12-21T00:00:45.000Z',
1000
+ Staff: [],
1001
+ participants: [
1002
+ {
1003
+ Person: {
1004
+ PersonId: 374,
1005
+ DisplayName: 'Pablo Illing',
1006
+ Pronouns: 'He/Him',
1007
+ ClubId: 17,
1008
+ ShowData: true,
1009
+ Club: {
1010
+ Name: 'No Club Affiliation ',
1011
+ ShortName: 'NoClub',
1012
+ Images: []
1013
+ },
1014
+ Images: []
1015
+ },
1016
+ PoolId: 412,
1017
+ PoolPosition: 33,
1018
+ Seed: 33
1019
+ },
1020
+ {
1021
+ Person: {
1022
+ PersonId: 344,
1023
+ DisplayName: 'Piotr Przanowski',
1024
+ Pronouns: 'He/Him',
1025
+ ClubId: 264,
1026
+ ShowData: true,
1027
+ Club: {
1028
+ Name: 'Bractwo Szermiercze',
1029
+ ShortName: 'BSZ',
1030
+ Images: []
1031
+ },
1032
+ Images: []
1033
+ },
1034
+ PoolId: 412,
1035
+ PoolPosition: 10,
1036
+ Seed: 10
1037
+ },
1038
+ {
1039
+ Person: {
1040
+ PersonId: 366,
1041
+ DisplayName: 'Rune Smith',
1042
+ Pronouns: 'She/Her',
1043
+ ClubId: 205,
1044
+ ShowData: true,
1045
+ Club: {
1046
+ Name: 'Battlefield KDF',
1047
+ ShortName: 'BKdf',
1048
+ Images: []
1049
+ },
1050
+ Images: []
1051
+ },
1052
+ PoolId: 412,
1053
+ PoolPosition: 93,
1054
+ Seed: 93
1055
+ },
1056
+ {
1057
+ Person: {
1058
+ PersonId: 353,
1059
+ DisplayName: 'KC Caswell',
1060
+ Pronouns: 'He/Him',
1061
+ ClubId: 17,
1062
+ ShowData: true,
1063
+ Club: {
1064
+ Name: 'No Club Affiliation ',
1065
+ ShortName: 'NoClub',
1066
+ Images: []
1067
+ },
1068
+ Images: []
1069
+ },
1070
+ PoolId: 412,
1071
+ PoolPosition: 34,
1072
+ Seed: 34
1073
+ },
1074
+ {
1075
+ Person: {
1076
+ PersonId: 418,
1077
+ DisplayName: 'Doug Trefun',
1078
+ Pronouns: 'He/Him',
1079
+ ClubId: 257,
1080
+ ShowData: true,
1081
+ Club: {
1082
+ Name: 'Tuathair Hema Academy',
1083
+ ShortName: 'THA',
1084
+ Images: []
1085
+ },
1086
+ Images: []
1087
+ },
1088
+ PoolId: 412,
1089
+ PoolPosition: 76,
1090
+ Seed: 76
1091
+ }
1092
+ ],
1093
+ BoutsLeft: 0,
1094
+ TotalBouts: 0
1095
+ },
1096
+ {
1097
+ PoolId: 413,
1098
+ Name: 'Pool 10',
1099
+ RingName: 'Ring 2',
1100
+ Flight: 2,
1101
+ PoolType: 'pool',
1102
+ EventId: 82,
1103
+ Status: 'preparation',
1104
+ Updated: '2024-12-21T00:00:45.000Z',
1105
+ Staff: [],
1106
+ participants: [
1107
+ {
1108
+ Person: {
1109
+ PersonId: 391,
1110
+ DisplayName: 'James Leliveld',
1111
+ Pronouns: 'He/Him',
1112
+ ClubId: 270,
1113
+ ShowData: true,
1114
+ Club: {
1115
+ Name: 'Charlottesville HEMA',
1116
+ ShortName: 'CSVH',
1117
+ Images: []
1118
+ },
1119
+ Images: []
1120
+ },
1121
+ PoolId: 413,
1122
+ PoolPosition: 73,
1123
+ Seed: 73
1124
+ },
1125
+ {
1126
+ Person: {
1127
+ PersonId: 274,
1128
+ DisplayName: 'Jason Barrons',
1129
+ Pronouns: 'He/Him',
1130
+ ClubId: 76,
1131
+ ShowData: true,
1132
+ Club: {
1133
+ Name: 'Denver Historical Fencing Academy',
1134
+ ShortName: 'DHFA',
1135
+ Images: []
1136
+ },
1137
+ Images: []
1138
+ },
1139
+ PoolId: 413,
1140
+ PoolPosition: 12,
1141
+ Seed: 12
1142
+ },
1143
+ {
1144
+ Person: {
1145
+ PersonId: 346,
1146
+ DisplayName: 'Richard Escoto',
1147
+ Pronouns: 'He/Him',
1148
+ ClubId: 75,
1149
+ ShowData: true,
1150
+ Club: {
1151
+ Name: 'Atlanta Historical Fencing Academy',
1152
+ ShortName: 'AHFA',
1153
+ Images: []
1154
+ },
1155
+ Images: []
1156
+ },
1157
+ PoolId: 413,
1158
+ PoolPosition: 52,
1159
+ Seed: 52
1160
+ },
1161
+ {
1162
+ Person: {
1163
+ PersonId: 411,
1164
+ DisplayName: 'Kaz Strankowski',
1165
+ Pronouns: 'He/Him',
1166
+ ClubId: 253,
1167
+ ShowData: true,
1168
+ Club: {
1169
+ Name: 'Hudson Valley Fencing',
1170
+ ShortName: 'HVF',
1171
+ Images: []
1172
+ },
1173
+ Images: []
1174
+ },
1175
+ PoolId: 413,
1176
+ PoolPosition: 94,
1177
+ Seed: 94
1178
+ },
1179
+ {
1180
+ Person: {
1181
+ PersonId: 277,
1182
+ DisplayName: 'Shawn Harris',
1183
+ Pronouns: 'He/Him',
1184
+ ClubId: 17,
1185
+ ShowData: true,
1186
+ Club: {
1187
+ Name: 'No Club Affiliation ',
1188
+ ShortName: 'NoClub',
1189
+ Images: []
1190
+ },
1191
+ Images: []
1192
+ },
1193
+ PoolId: 413,
1194
+ PoolPosition: 75,
1195
+ Seed: 75
1196
+ }
1197
+ ],
1198
+ BoutsLeft: 0,
1199
+ TotalBouts: 0
1200
+ },
1201
+ {
1202
+ PoolId: 414,
1203
+ Name: 'Pool 12',
1204
+ RingName: 'Ring 4',
1205
+ Flight: 2,
1206
+ PoolType: 'pool',
1207
+ EventId: 82,
1208
+ Status: 'preparation',
1209
+ Updated: '2024-12-21T00:00:45.000Z',
1210
+ Staff: [],
1211
+ participants: [
1212
+ {
1213
+ Person: {
1214
+ PersonId: 273,
1215
+ DisplayName: 'Thomas Pifer',
1216
+ Pronouns: 'He/Him',
1217
+ ClubId: 83,
1218
+ ShowData: true,
1219
+ Club: {
1220
+ Name: 'Metropolitan Historical Fencing Academy',
1221
+ ShortName: 'MHFA',
1222
+ Images: []
1223
+ },
1224
+ Images: []
1225
+ },
1226
+ PoolId: 414,
1227
+ PoolPosition: 13,
1228
+ Seed: 13
1229
+ },
1230
+ {
1231
+ Person: {
1232
+ PersonId: 400,
1233
+ DisplayName: 'Steven Hagan',
1234
+ Pronouns: 'He/Him',
1235
+ ClubId: 86,
1236
+ ShowData: true,
1237
+ Club: {
1238
+ Name: 'Schola St. George',
1239
+ ShortName: 'SSG',
1240
+ Images: []
1241
+ },
1242
+ Images: []
1243
+ },
1244
+ PoolId: 414,
1245
+ PoolPosition: 97,
1246
+ Seed: 97
1247
+ },
1248
+ {
1249
+ Person: {
1250
+ PersonId: 269,
1251
+ DisplayName: 'Paul Kartage',
1252
+ Pronouns: 'He/Him',
1253
+ ClubId: 46,
1254
+ ShowData: true,
1255
+ Club: {
1256
+ Name: 'Capital Kunst Des Fechtens',
1257
+ ShortName: 'CKDF',
1258
+ Images: []
1259
+ },
1260
+ Images: []
1261
+ },
1262
+ PoolId: 414,
1263
+ PoolPosition: 54,
1264
+ Seed: 54
1265
+ },
1266
+ {
1267
+ Person: {
1268
+ PersonId: 361,
1269
+ DisplayName: "Heather O'Sullivan",
1270
+ Pronouns: 'She/Her',
1271
+ ClubId: 17,
1272
+ ShowData: true,
1273
+ Club: {
1274
+ Name: 'No Club Affiliation ',
1275
+ ShortName: 'NoClub',
1276
+ Images: []
1277
+ },
1278
+ Images: []
1279
+ },
1280
+ PoolId: 414,
1281
+ PoolPosition: 96,
1282
+ Seed: 96
1283
+ },
1284
+ {
1285
+ Person: {
1286
+ PersonId: 236,
1287
+ DisplayName: 'Nicholas Schneider',
1288
+ Pronouns: 'He/Him',
1289
+ ClubId: 30,
1290
+ ShowData: true,
1291
+ Club: {
1292
+ Name: 'Maryland Kunst Des Fechtens',
1293
+ ShortName: 'MKDF',
1294
+ Images: []
1295
+ },
1296
+ Images: []
1297
+ },
1298
+ PoolId: 414,
1299
+ PoolPosition: 31,
1300
+ Seed: 31
1301
+ }
1302
+ ],
1303
+ BoutsLeft: 0,
1304
+ TotalBouts: 0
1305
+ },
1306
+ {
1307
+ PoolId: 415,
1308
+ Name: 'Pool 13',
1309
+ RingName: 'Ring 5',
1310
+ Flight: 2,
1311
+ PoolType: 'pool',
1312
+ EventId: 82,
1313
+ Status: 'preparation',
1314
+ Updated: '2024-12-21T00:00:46.000Z',
1315
+ Staff: [],
1316
+ participants: [
1317
+ {
1318
+ Person: {
1319
+ PersonId: 347,
1320
+ DisplayName: 'Paul Groover',
1321
+ Pronouns: 'He/Him',
1322
+ ClubId: 75,
1323
+ ShowData: true,
1324
+ Club: {
1325
+ Name: 'Atlanta Historical Fencing Academy',
1326
+ ShortName: 'AHFA',
1327
+ Images: []
1328
+ },
1329
+ Images: []
1330
+ },
1331
+ PoolId: 415,
1332
+ PoolPosition: 15,
1333
+ Seed: 15
1334
+ },
1335
+ {
1336
+ Person: {
1337
+ PersonId: 403,
1338
+ DisplayName: 'John Replogle',
1339
+ Pronouns: 'He/Him',
1340
+ ClubId: 258,
1341
+ ShowData: true,
1342
+ Club: {
1343
+ Name: 'Montgomery County Historical Fencing',
1344
+ ShortName: 'MCHF',
1345
+ Images: []
1346
+ },
1347
+ Images: []
1348
+ },
1349
+ PoolId: 415,
1350
+ PoolPosition: 90,
1351
+ Seed: 90
1352
+ },
1353
+ {
1354
+ Person: {
1355
+ PersonId: 410,
1356
+ DisplayName: 'River Furlow',
1357
+ Pronouns: 'He/Him',
1358
+ ClubId: 17,
1359
+ ShowData: true,
1360
+ Club: {
1361
+ Name: 'No Club Affiliation ',
1362
+ ShortName: 'NoClub',
1363
+ Images: []
1364
+ },
1365
+ Images: []
1366
+ },
1367
+ PoolId: 415,
1368
+ PoolPosition: 72,
1369
+ Seed: 72
1370
+ },
1371
+ {
1372
+ Person: {
1373
+ PersonId: 104,
1374
+ DisplayName: 'Matthew Huller',
1375
+ Pronouns: 'He/Him',
1376
+ ClubId: 102,
1377
+ ShowData: true,
1378
+ Club: {
1379
+ Name: 'Boston Armizare',
1380
+ ShortName: 'BA',
1381
+ Images: []
1382
+ },
1383
+ Images: []
1384
+ },
1385
+ PoolId: 415,
1386
+ PoolPosition: 30,
1387
+ Seed: 30
1388
+ },
1389
+ {
1390
+ Person: {
1391
+ PersonId: 420,
1392
+ DisplayName: 'Timothy Ware',
1393
+ Pronouns: 'He/Him',
1394
+ ClubId: 17,
1395
+ ShowData: true,
1396
+ Club: {
1397
+ Name: 'No Club Affiliation ',
1398
+ ShortName: 'NoClub',
1399
+ Images: []
1400
+ },
1401
+ Images: []
1402
+ },
1403
+ PoolId: 415,
1404
+ PoolPosition: 55,
1405
+ Seed: 55
1406
+ }
1407
+ ],
1408
+ BoutsLeft: 0,
1409
+ TotalBouts: 0
1410
+ },
1411
+ {
1412
+ PoolId: 416,
1413
+ Name: 'Pool 15',
1414
+ RingName: 'Ring 7',
1415
+ Flight: 2,
1416
+ PoolType: 'pool',
1417
+ EventId: 82,
1418
+ Status: 'preparation',
1419
+ Updated: '2024-12-21T00:00:46.000Z',
1420
+ Staff: [],
1421
+ participants: [
1422
+ {
1423
+ Person: {
1424
+ PersonId: 390,
1425
+ DisplayName: 'Jim Brasefield',
1426
+ Pronouns: 'He/Him',
1427
+ ClubId: 17,
1428
+ ShowData: true,
1429
+ Club: {
1430
+ Name: 'No Club Affiliation ',
1431
+ ShortName: 'NoClub',
1432
+ Images: []
1433
+ },
1434
+ Images: []
1435
+ },
1436
+ PoolId: 416,
1437
+ PoolPosition: 57,
1438
+ Seed: 57
1439
+ },
1440
+ {
1441
+ Person: {
1442
+ PersonId: 158,
1443
+ DisplayName: 'Stevi Parker',
1444
+ Pronouns: 'She/Her',
1445
+ ClubId: 62,
1446
+ ShowData: true,
1447
+ Club: {
1448
+ Name: 'Bucks Historical Longsword',
1449
+ ShortName: 'BHL',
1450
+ Images: []
1451
+ },
1452
+ Images: []
1453
+ },
1454
+ PoolId: 416,
1455
+ PoolPosition: 28,
1456
+ Seed: 28
1457
+ },
1458
+ {
1459
+ Person: {
1460
+ PersonId: 386,
1461
+ DisplayName: 'Feiyu Xie',
1462
+ Pronouns: 'He/Him',
1463
+ ClubId: 17,
1464
+ ShowData: true,
1465
+ Club: {
1466
+ Name: 'No Club Affiliation ',
1467
+ ShortName: 'NoClub',
1468
+ Images: []
1469
+ },
1470
+ Images: []
1471
+ },
1472
+ PoolId: 416,
1473
+ PoolPosition: 70,
1474
+ Seed: 70
1475
+ },
1476
+ {
1477
+ Person: {
1478
+ PersonId: 397,
1479
+ DisplayName: 'Marshall Strong',
1480
+ Pronouns: 'He/Him',
1481
+ ClubId: 55,
1482
+ ShowData: true,
1483
+ Club: {
1484
+ Name: 'Silkfencing Team',
1485
+ ShortName: 'ST',
1486
+ Images: []
1487
+ },
1488
+ Images: []
1489
+ },
1490
+ PoolId: 416,
1491
+ PoolPosition: 95,
1492
+ Seed: 95
1493
+ },
1494
+ {
1495
+ Person: {
1496
+ PersonId: 417,
1497
+ DisplayName: 'Julie Olson',
1498
+ Pronouns: 'She/Her',
1499
+ ClubId: 109,
1500
+ ShowData: true,
1501
+ Club: {
1502
+ Name: 'Athena School of Arms',
1503
+ ShortName: 'ASoA',
1504
+ Images: []
1505
+ },
1506
+ Images: []
1507
+ },
1508
+ PoolId: 416,
1509
+ PoolPosition: 99,
1510
+ Seed: 99
1511
+ }
1512
+ ],
1513
+ BoutsLeft: 0,
1514
+ TotalBouts: 0
1515
+ },
1516
+ {
1517
+ PoolId: 417,
1518
+ Name: 'Pool 11',
1519
+ RingName: 'Ring 3',
1520
+ Flight: 2,
1521
+ PoolType: 'pool',
1522
+ EventId: 82,
1523
+ Status: 'preparation',
1524
+ Updated: '2024-12-21T00:00:46.000Z',
1525
+ Staff: [],
1526
+ participants: [
1527
+ {
1528
+ Person: {
1529
+ PersonId: 237,
1530
+ DisplayName: 'Thomas Wall',
1531
+ Pronouns: 'He/Him',
1532
+ ClubId: 258,
1533
+ ShowData: true,
1534
+ Club: {
1535
+ Name: 'Montgomery County Historical Fencing',
1536
+ ShortName: 'MCHF',
1537
+ Images: []
1538
+ },
1539
+ Images: []
1540
+ },
1541
+ PoolId: 417,
1542
+ PoolPosition: 71,
1543
+ Seed: 71
1544
+ },
1545
+ {
1546
+ Person: {
1547
+ PersonId: 375,
1548
+ DisplayName: 'Peter Concannon',
1549
+ Pronouns: 'He/Him',
1550
+ ClubId: 258,
1551
+ ShowData: true,
1552
+ Club: {
1553
+ Name: 'Montgomery County Historical Fencing',
1554
+ ShortName: 'MCHF',
1555
+ Images: []
1556
+ },
1557
+ Images: []
1558
+ },
1559
+ PoolId: 417,
1560
+ PoolPosition: 32,
1561
+ Seed: 32
1562
+ },
1563
+ {
1564
+ Person: {
1565
+ PersonId: 351,
1566
+ DisplayName: 'Blaise Simpson',
1567
+ Pronouns: 'He/Him',
1568
+ ClubId: 16,
1569
+ ShowData: true,
1570
+ Club: {
1571
+ Name: 'Cymbrogi School of Western Martial Arts',
1572
+ ShortName: 'CSoWM',
1573
+ Images: []
1574
+ },
1575
+ Images: []
1576
+ },
1577
+ PoolId: 417,
1578
+ PoolPosition: 74,
1579
+ Seed: 74
1580
+ },
1581
+ {
1582
+ Person: {
1583
+ PersonId: 380,
1584
+ DisplayName: 'Ian Wilson',
1585
+ Pronouns: 'He/Him',
1586
+ ClubId: 188,
1587
+ ShowData: true,
1588
+ Club: {
1589
+ Name: 'Seven Swords Academy',
1590
+ ShortName: 'SSA',
1591
+ Images: []
1592
+ },
1593
+ Images: []
1594
+ },
1595
+ PoolId: 417,
1596
+ PoolPosition: 53,
1597
+ Seed: 53
1598
+ },
1599
+ {
1600
+ Person: {
1601
+ PersonId: 330,
1602
+ DisplayName: 'Derek Wise',
1603
+ Pronouns: 'He/Him',
1604
+ ClubId: 102,
1605
+ ShowData: true,
1606
+ Club: {
1607
+ Name: 'Boston Armizare',
1608
+ ShortName: 'BA',
1609
+ Images: []
1610
+ },
1611
+ Images: []
1612
+ },
1613
+ PoolId: 417,
1614
+ PoolPosition: 11,
1615
+ Seed: 11
1616
+ }
1617
+ ],
1618
+ BoutsLeft: 0,
1619
+ TotalBouts: 0
1620
+ },
1621
+ {
1622
+ PoolId: 418,
1623
+ Name: 'Pool 14',
1624
+ RingName: 'Ring 6',
1625
+ Flight: 2,
1626
+ PoolType: 'pool',
1627
+ EventId: 82,
1628
+ Status: 'preparation',
1629
+ Updated: '2024-12-21T00:00:46.000Z',
1630
+ Staff: [],
1631
+ participants: [
1632
+ {
1633
+ Person: {
1634
+ PersonId: 395,
1635
+ DisplayName: 'Harley Jelis',
1636
+ Pronouns: 'She/Her',
1637
+ ClubId: 65,
1638
+ ShowData: true,
1639
+ Club: {
1640
+ Name: 'New York Historical Fencing Academy',
1641
+ ShortName: 'NYHFA',
1642
+ Images: []
1643
+ },
1644
+ Images: []
1645
+ },
1646
+ PoolId: 418,
1647
+ PoolPosition: 27,
1648
+ Seed: 27
1649
+ },
1650
+ {
1651
+ Person: {
1652
+ PersonId: 337,
1653
+ DisplayName: 'Youssef Jaafar',
1654
+ Pronouns: 'He/Him',
1655
+ ClubId: 17,
1656
+ ShowData: true,
1657
+ Club: {
1658
+ Name: 'No Club Affiliation ',
1659
+ ShortName: 'NoClub',
1660
+ Images: []
1661
+ },
1662
+ Images: []
1663
+ },
1664
+ PoolId: 418,
1665
+ PoolPosition: 14,
1666
+ Seed: 14
1667
+ },
1668
+ {
1669
+ Person: {
1670
+ PersonId: 404,
1671
+ DisplayName: 'Kainoa Chang',
1672
+ Pronouns: 'He/Him',
1673
+ ClubId: 258,
1674
+ ShowData: true,
1675
+ Club: {
1676
+ Name: 'Montgomery County Historical Fencing',
1677
+ ShortName: 'MCHF',
1678
+ Images: []
1679
+ },
1680
+ Images: []
1681
+ },
1682
+ PoolId: 418,
1683
+ PoolPosition: 56,
1684
+ Seed: 56
1685
+ },
1686
+ {
1687
+ Person: {
1688
+ PersonId: 354,
1689
+ DisplayName: 'Ashley Hearn',
1690
+ Pronouns: 'She/Her',
1691
+ ClubId: 75,
1692
+ ShowData: true,
1693
+ Club: {
1694
+ Name: 'Atlanta Historical Fencing Academy',
1695
+ ShortName: 'AHFA',
1696
+ Images: []
1697
+ },
1698
+ Images: []
1699
+ },
1700
+ PoolId: 418,
1701
+ PoolPosition: 29,
1702
+ Seed: 29
1703
+ },
1704
+ {
1705
+ Person: {
1706
+ PersonId: 414,
1707
+ DisplayName: 'William Thompson',
1708
+ Pronouns: 'He/Him',
1709
+ ClubId: 75,
1710
+ ShowData: true,
1711
+ Club: {
1712
+ Name: 'Atlanta Historical Fencing Academy',
1713
+ ShortName: 'AHFA',
1714
+ Images: []
1715
+ },
1716
+ Images: []
1717
+ },
1718
+ PoolId: 418,
1719
+ PoolPosition: 98,
1720
+ Seed: 98
1721
+ }
1722
+ ],
1723
+ BoutsLeft: 0,
1724
+ TotalBouts: 0
1725
+ },
1726
+ {
1727
+ PoolId: 524,
1728
+ Name: 'Pool 16',
1729
+ RingName: 'Ring 8',
1730
+ Flight: 2,
1731
+ PoolType: 'pool',
1732
+ EventId: 82,
1733
+ Status: 'preparation',
1734
+ Updated: '2025-02-26T17:36:32.000Z',
1735
+ Staff: [],
1736
+ participants: [
1737
+ {
1738
+ Person: {
1739
+ PersonId: 398,
1740
+ DisplayName: 'James Davis',
1741
+ Pronouns: 'He/Him',
1742
+ ClubId: 78,
1743
+ ShowData: true,
1744
+ Club: {
1745
+ Name: 'Sword to Sword',
1746
+ ShortName: 'STS',
1747
+ Images: []
1748
+ },
1749
+ Images: []
1750
+ },
1751
+ PoolId: 524,
1752
+ PoolPosition: 68,
1753
+ Seed: 68
1754
+ },
1755
+ {
1756
+ Person: {
1757
+ PersonId: 402,
1758
+ DisplayName: 'Jacob McDonald',
1759
+ Pronouns: 'He/Him',
1760
+ ClubId: 16,
1761
+ ShowData: true,
1762
+ Club: {
1763
+ Name: 'Cymbrogi School of Western Martial Arts',
1764
+ ShortName: 'CSoWM',
1765
+ Images: []
1766
+ },
1767
+ Images: []
1768
+ },
1769
+ PoolId: 524,
1770
+ PoolPosition: 16,
1771
+ Seed: 16
1772
+ },
1773
+ {
1774
+ Person: {
1775
+ PersonId: 372,
1776
+ DisplayName: 'David Lillethun',
1777
+ Pronouns: 'He/Him',
1778
+ ClubId: 86,
1779
+ ShowData: true,
1780
+ Club: {
1781
+ Name: 'Schola St. George',
1782
+ ShortName: 'SSG',
1783
+ Images: []
1784
+ },
1785
+ Images: []
1786
+ },
1787
+ PoolId: 524,
1788
+ PoolPosition: 69,
1789
+ Seed: 69
1790
+ },
1791
+ {
1792
+ Person: {
1793
+ PersonId: 406,
1794
+ DisplayName: 'Christian Atos',
1795
+ Pronouns: 'He/Him',
1796
+ ClubId: 30,
1797
+ ShowData: true,
1798
+ Club: {
1799
+ Name: 'Maryland Kunst Des Fechtens',
1800
+ ShortName: 'MKDF',
1801
+ Images: []
1802
+ },
1803
+ Images: []
1804
+ },
1805
+ PoolId: 524,
1806
+ PoolPosition: 58,
1807
+ Seed: 58
1808
+ },
1809
+ {
1810
+ Person: {
1811
+ PersonId: 373,
1812
+ DisplayName: 'Padraig Stimac',
1813
+ Pronouns: 'He/Him',
1814
+ ClubId: 86,
1815
+ ShowData: true,
1816
+ Club: {
1817
+ Name: 'Schola St. George',
1818
+ ShortName: 'SSG',
1819
+ Images: []
1820
+ },
1821
+ Images: []
1822
+ },
1823
+ PoolId: 524,
1824
+ PoolPosition: 100,
1825
+ Seed: 100
1826
+ }
1827
+ ],
1828
+ BoutsLeft: 0,
1829
+ TotalBouts: 0
1830
+ },
1831
+ {
1832
+ PoolId: 525,
1833
+ Name: 'Pool 17',
1834
+ RingName: 'Ring 1',
1835
+ Flight: 3,
1836
+ PoolType: 'pool',
1837
+ EventId: 82,
1838
+ Status: 'preparation',
1839
+ Updated: '2025-02-26T17:36:32.000Z',
1840
+ Staff: [],
1841
+ participants: [
1842
+ {
1843
+ Person: {
1844
+ PersonId: 370,
1845
+ DisplayName: 'Daniel Pierce',
1846
+ Pronouns: 'He/Him',
1847
+ ClubId: 75,
1848
+ ShowData: true,
1849
+ Club: {
1850
+ Name: 'Atlanta Historical Fencing Academy',
1851
+ ShortName: 'AHFA',
1852
+ Images: []
1853
+ },
1854
+ Images: []
1855
+ },
1856
+ PoolId: 525,
1857
+ PoolPosition: 18,
1858
+ Seed: 18
1859
+ },
1860
+ {
1861
+ Person: {
1862
+ PersonId: 408,
1863
+ DisplayName: 'Jonathan Rider',
1864
+ Pronouns: 'He/Him',
1865
+ ClubId: 17,
1866
+ ShowData: true,
1867
+ Club: {
1868
+ Name: 'No Club Affiliation ',
1869
+ ShortName: 'NoClub',
1870
+ Images: []
1871
+ },
1872
+ Images: []
1873
+ },
1874
+ PoolId: 525,
1875
+ PoolPosition: 26,
1876
+ Seed: 26
1877
+ },
1878
+ {
1879
+ Person: {
1880
+ PersonId: 238,
1881
+ DisplayName: 'Brent Wang',
1882
+ Pronouns: 'He/Him',
1883
+ ClubId: 46,
1884
+ ShowData: true,
1885
+ Club: {
1886
+ Name: 'Capital Kunst Des Fechtens',
1887
+ ShortName: 'CKDF',
1888
+ Images: []
1889
+ },
1890
+ Images: []
1891
+ },
1892
+ PoolId: 525,
1893
+ PoolPosition: 59,
1894
+ Seed: 59
1895
+ },
1896
+ {
1897
+ Person: {
1898
+ PersonId: 384,
1899
+ DisplayName: 'Trevor Jones',
1900
+ Pronouns: 'He/Him',
1901
+ ClubId: 76,
1902
+ ShowData: true,
1903
+ Club: {
1904
+ Name: 'Denver Historical Fencing Academy',
1905
+ ShortName: 'DHFA',
1906
+ Images: []
1907
+ },
1908
+ Images: []
1909
+ },
1910
+ PoolId: 525,
1911
+ PoolPosition: 17,
1912
+ Seed: 17
1913
+ },
1914
+ {
1915
+ Person: {
1916
+ PersonId: 419,
1917
+ DisplayName: 'Drake Stephens',
1918
+ Pronouns: 'He/Him',
1919
+ ClubId: 75,
1920
+ ShowData: true,
1921
+ Club: {
1922
+ Name: 'Atlanta Historical Fencing Academy',
1923
+ ShortName: 'AHFA',
1924
+ Images: []
1925
+ },
1926
+ Images: []
1927
+ },
1928
+ PoolId: 525,
1929
+ PoolPosition: 101,
1930
+ Seed: 101
1931
+ }
1932
+ ],
1933
+ BoutsLeft: 0,
1934
+ TotalBouts: 0
1935
+ },
1936
+ {
1937
+ PoolId: 530,
1938
+ Name: 'Pool 18',
1939
+ RingName: 'Ring 2',
1940
+ Flight: 3,
1941
+ PoolType: 'pool',
1942
+ EventId: 82,
1943
+ Status: 'preparation',
1944
+ Updated: '2025-02-26T18:53:20.000Z',
1945
+ Staff: [],
1946
+ participants: [
1947
+ {
1948
+ Person: {
1949
+ PersonId: 393,
1950
+ DisplayName: 'Ian Larson',
1951
+ Pronouns: 'He/Him',
1952
+ ClubId: 229,
1953
+ ShowData: true,
1954
+ Club: {
1955
+ Name: 'Blacksburg Blades',
1956
+ ShortName: 'BB',
1957
+ Images: []
1958
+ },
1959
+ Images: []
1960
+ },
1961
+ PoolId: 530,
1962
+ PoolPosition: 66,
1963
+ Seed: 66
1964
+ },
1965
+ {
1966
+ Person: {
1967
+ PersonId: 394,
1968
+ DisplayName: 'Christopher Deraney',
1969
+ Pronouns: 'He/Him',
1970
+ ClubId: 75,
1971
+ ShowData: true,
1972
+ Club: {
1973
+ Name: 'Atlanta Historical Fencing Academy',
1974
+ ShortName: 'AHFA',
1975
+ Images: []
1976
+ },
1977
+ Images: []
1978
+ },
1979
+ PoolId: 530,
1980
+ PoolPosition: 24,
1981
+ Seed: 24
1982
+ },
1983
+ {
1984
+ Person: {
1985
+ PersonId: 396,
1986
+ DisplayName: 'Eric Musgrove',
1987
+ Pronouns: 'He/Him',
1988
+ ClubId: 75,
1989
+ ShowData: true,
1990
+ Club: {
1991
+ Name: 'Atlanta Historical Fencing Academy',
1992
+ ShortName: 'AHFA',
1993
+ Images: []
1994
+ },
1995
+ Images: []
1996
+ },
1997
+ PoolId: 530,
1998
+ PoolPosition: 25,
1999
+ Seed: 25
2000
+ },
2001
+ {
2002
+ Person: {
2003
+ PersonId: 413,
2004
+ DisplayName: 'Sean Pabers',
2005
+ Pronouns: 'He/Him',
2006
+ ClubId: 17,
2007
+ ShowData: true,
2008
+ Club: {
2009
+ Name: 'No Club Affiliation ',
2010
+ ShortName: 'NoClub',
2011
+ Images: []
2012
+ },
2013
+ Images: []
2014
+ },
2015
+ PoolId: 530,
2016
+ PoolPosition: 67,
2017
+ Seed: 67
2018
+ },
2019
+ {
2020
+ Person: {
2021
+ PersonId: 415,
2022
+ DisplayName: 'Alexander Szramoski',
2023
+ Pronouns: 'He/Him',
2024
+ ClubId: 17,
2025
+ ShowData: true,
2026
+ Club: {
2027
+ Name: 'No Club Affiliation ',
2028
+ ShortName: 'NoClub',
2029
+ Images: []
2030
+ },
2031
+ Images: []
2032
+ },
2033
+ PoolId: 530,
2034
+ PoolPosition: 60,
2035
+ Seed: 60
2036
+ }
2037
+ ],
2038
+ BoutsLeft: 0,
2039
+ TotalBouts: 0
2040
+ },
2041
+ {
2042
+ PoolId: 531,
2043
+ Name: 'Pool 19',
2044
+ RingName: 'Ring 3',
2045
+ Flight: 3,
2046
+ PoolType: 'pool',
2047
+ EventId: 82,
2048
+ Status: 'preparation',
2049
+ Updated: '2025-02-26T18:53:20.000Z',
2050
+ Staff: [],
2051
+ participants: [
2052
+ {
2053
+ Person: {
2054
+ PersonId: 142,
2055
+ DisplayName: 'Andrew Bakry',
2056
+ Pronouns: 'He/Him',
2057
+ ClubId: 30,
2058
+ ShowData: true,
2059
+ Club: {
2060
+ Name: 'Maryland Kunst Des Fechtens',
2061
+ ShortName: 'MKDF',
2062
+ Images: []
2063
+ },
2064
+ Images: []
2065
+ },
2066
+ PoolId: 531,
2067
+ PoolPosition: 62,
2068
+ Seed: 62
2069
+ },
2070
+ {
2071
+ Person: {
2072
+ PersonId: 328,
2073
+ DisplayName: 'Tyler Jachetta',
2074
+ Pronouns: 'He/Him',
2075
+ ClubId: 47,
2076
+ ShowData: true,
2077
+ Club: {
2078
+ Name: 'Nickel City Longsword Academy',
2079
+ ShortName: 'NCLA',
2080
+ Images: []
2081
+ },
2082
+ Images: []
2083
+ },
2084
+ PoolId: 531,
2085
+ PoolPosition: 65,
2086
+ Seed: 65
2087
+ },
2088
+ {
2089
+ Person: {
2090
+ PersonId: 343,
2091
+ DisplayName: 'James Minnick',
2092
+ Pronouns: 'He/Him',
2093
+ ClubId: 76,
2094
+ ShowData: true,
2095
+ Club: {
2096
+ Name: 'Denver Historical Fencing Academy',
2097
+ ShortName: 'DHFA',
2098
+ Images: []
2099
+ },
2100
+ Images: []
2101
+ },
2102
+ PoolId: 531,
2103
+ PoolPosition: 61,
2104
+ Seed: 61
2105
+ },
2106
+ {
2107
+ Person: {
2108
+ PersonId: 329,
2109
+ DisplayName: 'Cameron Low',
2110
+ Pronouns: 'He/Him',
2111
+ ClubId: 75,
2112
+ ShowData: true,
2113
+ Club: {
2114
+ Name: 'Atlanta Historical Fencing Academy',
2115
+ ShortName: 'AHFA',
2116
+ Images: []
2117
+ },
2118
+ Images: []
2119
+ },
2120
+ PoolId: 531,
2121
+ PoolPosition: 19,
2122
+ Seed: 19
2123
+ },
2124
+ {
2125
+ Person: {
2126
+ PersonId: 230,
2127
+ DisplayName: 'Michael Tucker',
2128
+ Pronouns: 'He/Him',
2129
+ ClubId: 257,
2130
+ ShowData: true,
2131
+ Club: {
2132
+ Name: 'Tuathair Hema Academy',
2133
+ ShortName: 'THA',
2134
+ Images: []
2135
+ },
2136
+ Images: []
2137
+ },
2138
+ PoolId: 531,
2139
+ PoolPosition: 20,
2140
+ Seed: 20
2141
+ }
2142
+ ],
2143
+ BoutsLeft: 0,
2144
+ TotalBouts: 0
2145
+ },
2146
+ {
2147
+ PoolId: 532,
2148
+ Name: 'Pool 20',
2149
+ RingName: 'Ring 4',
2150
+ Flight: 3,
2151
+ PoolType: 'pool',
2152
+ EventId: 82,
2153
+ Status: 'preparation',
2154
+ Updated: '2025-02-26T18:53:20.000Z',
2155
+ Staff: [],
2156
+ participants: [],
2157
+ BoutsLeft: 0,
2158
+ TotalBouts: 0
2159
+ },
2160
+ {
2161
+ PoolId: 533,
2162
+ Name: 'Pool 21',
2163
+ RingName: 'Ring 5',
2164
+ Flight: 3,
2165
+ PoolType: 'pool',
2166
+ EventId: 82,
2167
+ Status: 'preparation',
2168
+ Updated: '2025-02-26T18:53:20.000Z',
2169
+ Staff: [],
2170
+ participants: [
2171
+ {
2172
+ Person: {
2173
+ PersonId: 399,
2174
+ DisplayName: 'Henry Reynolds',
2175
+ Pronouns: 'He/Him',
2176
+ ClubId: 62,
2177
+ ShowData: true,
2178
+ Club: {
2179
+ Name: 'Bucks Historical Longsword',
2180
+ ShortName: 'BHL',
2181
+ Images: []
2182
+ },
2183
+ Images: []
2184
+ },
2185
+ PoolId: 533,
2186
+ PoolPosition: 21,
2187
+ Seed: 21
2188
+ },
2189
+ {
2190
+ Person: {
2191
+ PersonId: 141,
2192
+ DisplayName: 'Joseph Lilly',
2193
+ Pronouns: 'He/Him',
2194
+ ClubId: 46,
2195
+ ShowData: true,
2196
+ Club: {
2197
+ Name: 'Capital Kunst Des Fechtens',
2198
+ ShortName: 'CKDF',
2199
+ Images: []
2200
+ },
2201
+ Images: []
2202
+ },
2203
+ PoolId: 533,
2204
+ PoolPosition: 22,
2205
+ Seed: 22
2206
+ },
2207
+ {
2208
+ Person: {
2209
+ PersonId: 223,
2210
+ DisplayName: 'Bryan Taylor',
2211
+ Pronouns: 'He/Him',
2212
+ ClubId: 257,
2213
+ ShowData: true,
2214
+ Club: {
2215
+ Name: 'Tuathair Hema Academy',
2216
+ ShortName: 'THA',
2217
+ Images: []
2218
+ },
2219
+ Images: []
2220
+ },
2221
+ PoolId: 533,
2222
+ PoolPosition: 63,
2223
+ Seed: 63
2224
+ },
2225
+ {
2226
+ Person: {
2227
+ PersonId: 412,
2228
+ DisplayName: 'Kristopher Micozzi',
2229
+ Pronouns: 'He/Him',
2230
+ ClubId: 297,
2231
+ ShowData: true,
2232
+ Club: {
2233
+ Name: 'Sacramento Historical Fencing Academy',
2234
+ ShortName: 'SHFA',
2235
+ Images: []
2236
+ },
2237
+ Images: []
2238
+ },
2239
+ PoolId: 533,
2240
+ PoolPosition: 64,
2241
+ Seed: 64
2242
+ },
2243
+ {
2244
+ Person: {
2245
+ PersonId: 196,
2246
+ DisplayName: 'Stephen Dougherty',
2247
+ Pronouns: 'He/Him',
2248
+ ClubId: 34,
2249
+ ShowData: true,
2250
+ Club: {
2251
+ Name: 'Medieval European Martial Arts Guild',
2252
+ ShortName: 'MEMAG',
2253
+ Images: []
2254
+ },
2255
+ Images: []
2256
+ },
2257
+ PoolId: 533,
2258
+ PoolPosition: 23,
2259
+ Seed: 23
2260
+ }
2261
+ ],
2262
+ BoutsLeft: 0,
2263
+ TotalBouts: 0
2264
+ }
2265
+ ],
2266
+ staff: []
2267
+ };
2269
2268
 
2270
- export default eventPersonGetInitialPoolAssignments2;
2269
+ export default eventPersonGetInitialPoolAssignments2;