@dcrackel/meyersquaredui 1.0.42 → 1.0.44

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 (73) hide show
  1. package/dist/meyersquaredui.es.js +634 -515
  2. package/dist/meyersquaredui.umd.js +1 -1
  3. package/package.json +4 -3
  4. package/src/index.js +1 -1
  5. package/src/mocks/getAllClubs.js +106 -0
  6. package/src/mocks/getClubById.js +130 -0
  7. package/src/mocks/getFencersByWeapon.js +2167 -0
  8. package/src/mocks/getTouranmentDetailsMock.js +92 -0
  9. package/src/stories/Atoms/BaseButton/BaseButton.vue +5 -3
  10. package/src/stories/Atoms/BaseText/BaseText.vue +1 -1
  11. package/src/stories/Atoms/Icon/Icon.vue +4 -2
  12. package/src/stories/Atoms/InputField/InputField.stories.js +28 -9
  13. package/src/stories/Atoms/InputField/InputField.vue +20 -2
  14. package/src/stories/Molecules/Calendar/Calendar.stories.js +39 -0
  15. package/src/stories/Molecules/Calendar/Calendar.vue +110 -0
  16. package/src/stories/Molecules/DropDowns/BasicDropDown.stories.js +31 -0
  17. package/src/stories/Molecules/DropDowns/BasicDropDown.vue +78 -0
  18. package/src/stories/Molecules/MapBox/MapBox.stories.js +30 -0
  19. package/src/stories/Molecules/MapBox/MapBox.vue +67 -0
  20. package/src/stories/Molecules/SearchBox/SearchBox.vue +2 -1
  21. package/src/stories/Molecules/SearchBox/Searchbox.stories.js +1 -1
  22. package/src/stories/Organisms/Cards/ArticleCard/ArticleCard.vue +8 -3
  23. package/src/stories/Organisms/Cards/ClubListCard/CLubListCard.stories.js +31 -0
  24. package/src/stories/Organisms/Cards/ClubListCard/ClubListCard.vue +72 -0
  25. package/src/stories/Organisms/Cards/ClubMember/ClubMember.stories.js +40 -0
  26. package/src/stories/Organisms/Cards/ClubMember/ClubMember.vue +56 -0
  27. package/src/stories/Organisms/Cards/EventListCard/EventListCard.stories.js +38 -0
  28. package/src/stories/Organisms/Cards/EventListCard/EventListCard.vue +64 -0
  29. package/src/stories/Organisms/Cards/FencerCard/FencerCard.vue +9 -10
  30. package/src/stories/Organisms/Cards/FencerListCard/FencerListCard.stories.js +30 -0
  31. package/src/stories/Organisms/Cards/FencerListCard/FencerListCard.vue +86 -0
  32. package/src/stories/Organisms/Cards/PhotoCard/PhotoCard.stories.js +28 -0
  33. package/src/stories/Organisms/Cards/PhotoCard/PhotoCard.vue +18 -0
  34. package/src/stories/Organisms/Cards/SocialMediaLinkCard/SocialMediaLinkCard.stories.js +40 -0
  35. package/src/stories/Organisms/Cards/SocialMediaLinkCard/SocialMediaLinkCard.vue +54 -0
  36. package/src/stories/Organisms/Cards/TournamentCard/TournamentCard.stories.js +1 -1
  37. package/src/stories/Organisms/Cards/TournamentCard/TournamentCard.vue +9 -1
  38. package/src/stories/Organisms/Cards/TournamentDetails/TournamentDetails.stories.js +35 -0
  39. package/src/stories/Organisms/Cards/TournamentDetails/TournamentDetails.vue +59 -0
  40. package/src/stories/Organisms/Cards/TournamentListCard/TournamentListCard.stories.js +26 -0
  41. package/src/stories/Organisms/Cards/TournamentListCard/TournamentListCard.vue +103 -0
  42. package/src/stories/Organisms/Column/HostColumn.stories.js +39 -0
  43. package/src/stories/Organisms/Column/HostColumn.vue +105 -0
  44. package/src/stories/Organisms/GridLayout/GridLayout.vue +36 -6
  45. package/src/stories/Organisms/Headers/ClubHeader/ClubHeader.stories.js +21 -0
  46. package/src/stories/Organisms/Headers/ClubHeader/ClubHeader.vue +58 -0
  47. package/src/stories/Organisms/Headers/LeaderboardHeader/LeaderboardHeader.stories.js +29 -0
  48. package/src/stories/Organisms/Headers/LeaderboardHeader/LeaderboardHeader.vue +59 -0
  49. package/src/stories/Organisms/Headers/{Header.stories.js → PageHeader/PageHeader.stories.js} +2 -2
  50. package/src/stories/Organisms/Headers/PageHeader/PageHeader.vue +101 -0
  51. package/src/stories/Organisms/Headers/TournamentHeader/TournamentHeader.stories.js +34 -0
  52. package/src/stories/Organisms/Headers/TournamentHeader/TournamentHeader.vue +73 -0
  53. package/src/stories/Organisms/HeroBanners/HomePage/HeroBanner.stories.js +3 -3
  54. package/src/stories/Organisms/HeroBanners/HomePage/HeroBanner.vue +1 -1
  55. package/src/stories/Organisms/HeroBanners/TournamentDetails/TournamentDetailsBanner.stories.js +39 -0
  56. package/src/stories/Organisms/HeroBanners/TournamentDetails/TournamentDetailsBanner.vue +129 -0
  57. package/src/stories/Organisms/HeroBanners/Tournaments/TournamentBanner.stories.js +25 -0
  58. package/src/stories/Organisms/HeroBanners/Tournaments/TournamentBanner.vue +79 -0
  59. package/src/stories/Organisms/SectionBanners/DoubleButtonBanner/DoubleButtonBanner.vue +4 -0
  60. package/src/stories/Organisms/SectionBanners/SingleButtonBanner/SingleButtonBanner.vue +1 -1
  61. package/src/stories/Templates/ClubDetailPage/ClubDetailPage.stories.js +43 -0
  62. package/src/stories/Templates/ClubDetailPage/ClubDetailPage.vue +127 -0
  63. package/src/stories/Templates/ClubListPage/ClubListPage.stories.js +43 -0
  64. package/src/stories/Templates/ClubListPage/ClubListPage.vue +84 -0
  65. package/src/stories/Templates/HomePage/HomePage.stories.js +6 -6
  66. package/src/stories/Templates/HomePage/HomePage.vue +20 -13
  67. package/src/stories/Templates/Leaderboard/Leaderboard.stories.js +43 -0
  68. package/src/stories/Templates/Leaderboard/Leaderboard.vue +93 -0
  69. package/src/stories/Templates/TournamentDetailPage/TournamentDetail.stories.js +32 -0
  70. package/src/stories/Templates/TournamentDetailPage/TournamentDetailPage.vue +121 -0
  71. package/src/stories/Templates/TournamentListPage/TournamentListPage.stories.js +41 -0
  72. package/src/stories/Templates/TournamentListPage/TournamentListPage.vue +91 -0
  73. package/src/stories/Organisms/Headers/Header.vue +0 -62
@@ -0,0 +1,2167 @@
1
+ const mockGetClubById =
2
+ [
3
+ {
4
+ "PersonId": 3,
5
+ "DisplayName": "Dave Larabee",
6
+ "ClubId": 3,
7
+ "HEMARatings": [],
8
+ "M2Ratings": [
9
+ {
10
+ "FormattedRating": "C24"
11
+ }
12
+ ],
13
+ "Club": {
14
+ "ClubId": 3,
15
+ "Name": "Sword & Blade of Callie"
16
+ },
17
+ "ProfileImage": null
18
+ },
19
+ {
20
+ "PersonId": 2,
21
+ "DisplayName": "Kyle Edwards",
22
+ "ClubId": 6,
23
+ "HEMARatings": [],
24
+ "M2Ratings": [
25
+ {
26
+ "FormattedRating": "D24"
27
+ }
28
+ ],
29
+ "Club": {
30
+ "ClubId": 6,
31
+ "Name": "SwordPlay Society"
32
+ },
33
+ "ProfileImage": null
34
+ },
35
+ {
36
+ "PersonId": 1,
37
+ "DisplayName": "Dwain Crackel",
38
+ "ClubId": 10,
39
+ "HEMARatings": [
40
+ {
41
+ "Rank": 926,
42
+ "Rating": 1370,
43
+ "WeaponId": 1
44
+ }
45
+ ],
46
+ "M2Ratings": [
47
+ {
48
+ "FormattedRating": "E24"
49
+ }
50
+ ],
51
+ "Club": {
52
+ "ClubId": 10,
53
+ "Name": "Columbus United Fencing Club"
54
+ },
55
+ "ProfileImage": {
56
+ "URL": "https://randomuser.me/api/portraits/men/22.jpg",
57
+ "AltText": null
58
+ }
59
+ },
60
+ {
61
+ "PersonId": 4,
62
+ "DisplayName": "Kim Bullock",
63
+ "ClubId": 1,
64
+ "HEMARatings": [],
65
+ "M2Ratings": [
66
+ {
67
+ "FormattedRating": "U"
68
+ }
69
+ ],
70
+ "Club": {
71
+ "ClubId": 1,
72
+ "Name": "Acme Fencing Club"
73
+ },
74
+ "ProfileImage": {
75
+ "URL": "https://randomuser.me/api/portraits/women/45.jpg",
76
+ "AltText": null
77
+ }
78
+ },
79
+ {
80
+ "PersonId": 5,
81
+ "DisplayName": "Darlene Acevedo",
82
+ "ClubId": 9,
83
+ "HEMARatings": [],
84
+ "M2Ratings": [
85
+ {
86
+ "FormattedRating": "U"
87
+ }
88
+ ],
89
+ "Club": {
90
+ "ClubId": 9,
91
+ "Name": "Cats Cutlass Club of Canton"
92
+ },
93
+ "ProfileImage": {
94
+ "URL": "https://randomuser.me/api/portraits/women/30.jpg",
95
+ "AltText": null
96
+ }
97
+ },
98
+ {
99
+ "PersonId": 6,
100
+ "DisplayName": "Courtney Medina",
101
+ "ClubId": 3,
102
+ "HEMARatings": [],
103
+ "M2Ratings": [
104
+ {
105
+ "FormattedRating": "U"
106
+ }
107
+ ],
108
+ "Club": {
109
+ "ClubId": 3,
110
+ "Name": "Sword & Blade of Callie"
111
+ },
112
+ "ProfileImage": null
113
+ },
114
+ {
115
+ "PersonId": 7,
116
+ "DisplayName": "Emily Carlson",
117
+ "ClubId": 4,
118
+ "HEMARatings": [],
119
+ "M2Ratings": [
120
+ {
121
+ "FormattedRating": "U"
122
+ }
123
+ ],
124
+ "Club": {
125
+ "ClubId": 4,
126
+ "Name": "Guardians of the Guard"
127
+ },
128
+ "ProfileImage": null
129
+ },
130
+ {
131
+ "PersonId": 8,
132
+ "DisplayName": "Jamie Bittle",
133
+ "ClubId": 2,
134
+ "HEMARatings": [],
135
+ "M2Ratings": [
136
+ {
137
+ "FormattedRating": "U"
138
+ }
139
+ ],
140
+ "Club": {
141
+ "ClubId": 2,
142
+ "Name": "Historical Fencing Of Anywhere"
143
+ },
144
+ "ProfileImage": {
145
+ "URL": "https://randomuser.me/api/portraits/women/41.jpg",
146
+ "AltText": null
147
+ }
148
+ },
149
+ {
150
+ "PersonId": 9,
151
+ "DisplayName": "Sean McCoy",
152
+ "ClubId": 7,
153
+ "HEMARatings": [],
154
+ "M2Ratings": [
155
+ {
156
+ "FormattedRating": "U"
157
+ }
158
+ ],
159
+ "Club": {
160
+ "ClubId": 7,
161
+ "Name": "Hilt & Heart"
162
+ },
163
+ "ProfileImage": null
164
+ },
165
+ {
166
+ "PersonId": 10,
167
+ "DisplayName": "Melissa Jones",
168
+ "ClubId": 4,
169
+ "HEMARatings": [],
170
+ "M2Ratings": [
171
+ {
172
+ "FormattedRating": "U"
173
+ }
174
+ ],
175
+ "Club": {
176
+ "ClubId": 4,
177
+ "Name": "Guardians of the Guard"
178
+ },
179
+ "ProfileImage": {
180
+ "URL": "https://randomuser.me/api/portraits/women/9.jpg",
181
+ "AltText": null
182
+ }
183
+ },
184
+ {
185
+ "PersonId": 11,
186
+ "DisplayName": "Sylvia Lee",
187
+ "ClubId": 3,
188
+ "HEMARatings": [],
189
+ "M2Ratings": [
190
+ {
191
+ "FormattedRating": "U"
192
+ }
193
+ ],
194
+ "Club": {
195
+ "ClubId": 3,
196
+ "Name": "Sword & Blade of Callie"
197
+ },
198
+ "ProfileImage": null
199
+ },
200
+ {
201
+ "PersonId": 12,
202
+ "DisplayName": "Lindsey Mitchell",
203
+ "ClubId": 6,
204
+ "HEMARatings": [],
205
+ "M2Ratings": [
206
+ {
207
+ "FormattedRating": "U"
208
+ }
209
+ ],
210
+ "Club": {
211
+ "ClubId": 6,
212
+ "Name": "SwordPlay Society"
213
+ },
214
+ "ProfileImage": null
215
+ },
216
+ {
217
+ "PersonId": 13,
218
+ "DisplayName": "Jarrett Anderson",
219
+ "ClubId": 1,
220
+ "HEMARatings": [],
221
+ "M2Ratings": [
222
+ {
223
+ "FormattedRating": "U"
224
+ }
225
+ ],
226
+ "Club": {
227
+ "ClubId": 1,
228
+ "Name": "Acme Fencing Club"
229
+ },
230
+ "ProfileImage": null
231
+ },
232
+ {
233
+ "PersonId": 14,
234
+ "DisplayName": "Jordan Allen",
235
+ "ClubId": 5,
236
+ "HEMARatings": [],
237
+ "M2Ratings": [
238
+ {
239
+ "FormattedRating": "U"
240
+ }
241
+ ],
242
+ "Club": {
243
+ "ClubId": 5,
244
+ "Name": "Fechtastic Fighters"
245
+ },
246
+ "ProfileImage": null
247
+ },
248
+ {
249
+ "PersonId": 15,
250
+ "DisplayName": "David Peters",
251
+ "ClubId": 9,
252
+ "HEMARatings": [],
253
+ "M2Ratings": [
254
+ {
255
+ "FormattedRating": "U"
256
+ }
257
+ ],
258
+ "Club": {
259
+ "ClubId": 9,
260
+ "Name": "Cats Cutlass Club of Canton"
261
+ },
262
+ "ProfileImage": null
263
+ },
264
+ {
265
+ "PersonId": 16,
266
+ "DisplayName": "Christian Jacob Peralta",
267
+ "ClubId": 1,
268
+ "HEMARatings": [],
269
+ "M2Ratings": [
270
+ {
271
+ "FormattedRating": "U"
272
+ }
273
+ ],
274
+ "Club": {
275
+ "ClubId": 1,
276
+ "Name": "Acme Fencing Club"
277
+ },
278
+ "ProfileImage": null
279
+ },
280
+ {
281
+ "PersonId": 17,
282
+ "DisplayName": "Brendan Morris",
283
+ "ClubId": 7,
284
+ "HEMARatings": [],
285
+ "M2Ratings": [
286
+ {
287
+ "FormattedRating": "U"
288
+ }
289
+ ],
290
+ "Club": {
291
+ "ClubId": 7,
292
+ "Name": "Hilt & Heart"
293
+ },
294
+ "ProfileImage": null
295
+ },
296
+ {
297
+ "PersonId": 18,
298
+ "DisplayName": "Sean Hanson",
299
+ "ClubId": 3,
300
+ "HEMARatings": [],
301
+ "M2Ratings": [
302
+ {
303
+ "FormattedRating": "U"
304
+ }
305
+ ],
306
+ "Club": {
307
+ "ClubId": 3,
308
+ "Name": "Sword & Blade of Callie"
309
+ },
310
+ "ProfileImage": null
311
+ },
312
+ {
313
+ "PersonId": 19,
314
+ "DisplayName": "David Frederick",
315
+ "ClubId": 5,
316
+ "HEMARatings": [],
317
+ "M2Ratings": [
318
+ {
319
+ "FormattedRating": "U"
320
+ }
321
+ ],
322
+ "Club": {
323
+ "ClubId": 5,
324
+ "Name": "Fechtastic Fighters"
325
+ },
326
+ "ProfileImage": null
327
+ },
328
+ {
329
+ "PersonId": 22,
330
+ "DisplayName": "Bob Smith",
331
+ "ClubId": 6,
332
+ "HEMARatings": [],
333
+ "M2Ratings": [
334
+ {
335
+ "FormattedRating": "U"
336
+ }
337
+ ],
338
+ "Club": {
339
+ "ClubId": 6,
340
+ "Name": "SwordPlay Society"
341
+ },
342
+ "ProfileImage": {
343
+ "URL": "https://randomuser.me/api/portraits/men/81.jpg",
344
+ "AltText": null
345
+ }
346
+ },
347
+ {
348
+ "PersonId": 23,
349
+ "DisplayName": "Lucas Garcia",
350
+ "ClubId": 1,
351
+ "HEMARatings": [],
352
+ "M2Ratings": [
353
+ {
354
+ "FormattedRating": "U"
355
+ }
356
+ ],
357
+ "Club": {
358
+ "ClubId": 1,
359
+ "Name": "Acme Fencing Club"
360
+ },
361
+ "ProfileImage": {
362
+ "URL": "https://randomuser.me/api/portraits/men/77.jpg",
363
+ "AltText": null
364
+ }
365
+ },
366
+ {
367
+ "PersonId": 24,
368
+ "DisplayName": "Mia Rodriguez",
369
+ "ClubId": 2,
370
+ "HEMARatings": [],
371
+ "M2Ratings": [
372
+ {
373
+ "FormattedRating": "U"
374
+ }
375
+ ],
376
+ "Club": {
377
+ "ClubId": 2,
378
+ "Name": "Historical Fencing Of Anywhere"
379
+ },
380
+ "ProfileImage": {
381
+ "URL": "https://randomuser.me/api/portraits/women/89.jpg",
382
+ "AltText": null
383
+ }
384
+ },
385
+ {
386
+ "PersonId": 25,
387
+ "DisplayName": "Isabella Hernandez",
388
+ "ClubId": 4,
389
+ "HEMARatings": [],
390
+ "M2Ratings": [
391
+ {
392
+ "FormattedRating": "U"
393
+ }
394
+ ],
395
+ "Club": {
396
+ "ClubId": 4,
397
+ "Name": "Guardians of the Guard"
398
+ },
399
+ "ProfileImage": null
400
+ },
401
+ {
402
+ "PersonId": 29,
403
+ "DisplayName": "Smith Smithy",
404
+ "ClubId": 6,
405
+ "HEMARatings": [],
406
+ "M2Ratings": [
407
+ {
408
+ "FormattedRating": "U"
409
+ }
410
+ ],
411
+ "Club": {
412
+ "ClubId": 6,
413
+ "Name": "SwordPlay Society"
414
+ },
415
+ "ProfileImage": null
416
+ },
417
+ {
418
+ "PersonId": 30,
419
+ "DisplayName": "William Jabronie",
420
+ "ClubId": 8,
421
+ "HEMARatings": [],
422
+ "M2Ratings": [
423
+ {
424
+ "FormattedRating": "U"
425
+ }
426
+ ],
427
+ "Club": {
428
+ "ClubId": 8,
429
+ "Name": "Anytime Historical Fencing "
430
+ },
431
+ "ProfileImage": null
432
+ },
433
+ {
434
+ "PersonId": 31,
435
+ "DisplayName": "Jim Jungle",
436
+ "ClubId": 4,
437
+ "HEMARatings": [],
438
+ "M2Ratings": [
439
+ {
440
+ "FormattedRating": "U"
441
+ }
442
+ ],
443
+ "Club": {
444
+ "ClubId": 4,
445
+ "Name": "Guardians of the Guard"
446
+ },
447
+ "ProfileImage": null
448
+ },
449
+ {
450
+ "PersonId": 32,
451
+ "DisplayName": "AJ Trefney",
452
+ "ClubId": 13,
453
+ "HEMARatings": [
454
+ {
455
+ "Rank": 77,
456
+ "Rating": 1703.1,
457
+ "WeaponId": 1
458
+ }
459
+ ],
460
+ "M2Ratings": [
461
+ {
462
+ "FormattedRating": "U"
463
+ }
464
+ ],
465
+ "Club": {
466
+ "ClubId": 13,
467
+ "Name": "Two Ravens Fencing School"
468
+ },
469
+ "ProfileImage": null
470
+ },
471
+ {
472
+ "PersonId": 33,
473
+ "DisplayName": "Alec Willette",
474
+ "ClubId": 13,
475
+ "HEMARatings": [
476
+ {
477
+ "Rank": 471,
478
+ "Rating": 1483.6,
479
+ "WeaponId": 1
480
+ }
481
+ ],
482
+ "M2Ratings": [
483
+ {
484
+ "FormattedRating": "U"
485
+ }
486
+ ],
487
+ "Club": {
488
+ "ClubId": 13,
489
+ "Name": "Two Ravens Fencing School"
490
+ },
491
+ "ProfileImage": null
492
+ },
493
+ {
494
+ "PersonId": 34,
495
+ "DisplayName": "Alex Beaudet",
496
+ "ClubId": 13,
497
+ "HEMARatings": [],
498
+ "M2Ratings": [
499
+ {
500
+ "FormattedRating": "U"
501
+ }
502
+ ],
503
+ "Club": {
504
+ "ClubId": 13,
505
+ "Name": "Two Ravens Fencing School"
506
+ },
507
+ "ProfileImage": null
508
+ },
509
+ {
510
+ "PersonId": 35,
511
+ "DisplayName": "Branden Zipplinger",
512
+ "ClubId": 10,
513
+ "HEMARatings": [
514
+ {
515
+ "Rank": 80,
516
+ "Rating": 1700.1,
517
+ "WeaponId": 1
518
+ }
519
+ ],
520
+ "M2Ratings": [
521
+ {
522
+ "FormattedRating": "U"
523
+ }
524
+ ],
525
+ "Club": {
526
+ "ClubId": 10,
527
+ "Name": "Columbus United Fencing Club"
528
+ },
529
+ "ProfileImage": null
530
+ },
531
+ {
532
+ "PersonId": 36,
533
+ "DisplayName": "Brandon Caylor",
534
+ "ClubId": 10,
535
+ "HEMARatings": [
536
+ {
537
+ "Rank": 1724,
538
+ "Rating": 1224.8,
539
+ "WeaponId": 1
540
+ }
541
+ ],
542
+ "M2Ratings": [
543
+ {
544
+ "FormattedRating": "U"
545
+ }
546
+ ],
547
+ "Club": {
548
+ "ClubId": 10,
549
+ "Name": "Columbus United Fencing Club"
550
+ },
551
+ "ProfileImage": null
552
+ },
553
+ {
554
+ "PersonId": 37,
555
+ "DisplayName": "Brian Thiessen",
556
+ "ClubId": 38,
557
+ "HEMARatings": [
558
+ {
559
+ "Rank": 2462,
560
+ "Rating": 1114.2,
561
+ "WeaponId": 1
562
+ }
563
+ ],
564
+ "M2Ratings": [
565
+ {
566
+ "FormattedRating": "U"
567
+ }
568
+ ],
569
+ "Club": {
570
+ "ClubId": 38,
571
+ "Name": "Steelhead Western Martial Arts"
572
+ },
573
+ "ProfileImage": null
574
+ },
575
+ {
576
+ "PersonId": 38,
577
+ "DisplayName": "Christopher Yang",
578
+ "ClubId": 16,
579
+ "HEMARatings": [
580
+ {
581
+ "Rank": 218,
582
+ "Rating": 1591.7,
583
+ "WeaponId": 1
584
+ }
585
+ ],
586
+ "M2Ratings": [
587
+ {
588
+ "FormattedRating": "U"
589
+ }
590
+ ],
591
+ "Club": {
592
+ "ClubId": 16,
593
+ "Name": "Cymbrogi School of Western Martial Arts"
594
+ },
595
+ "ProfileImage": null
596
+ },
597
+ {
598
+ "PersonId": 39,
599
+ "DisplayName": "Colin McConnell",
600
+ "ClubId": 13,
601
+ "HEMARatings": [
602
+ {
603
+ "Rank": 182,
604
+ "Rating": 1612.8,
605
+ "WeaponId": 1
606
+ }
607
+ ],
608
+ "M2Ratings": [
609
+ {
610
+ "FormattedRating": "U"
611
+ }
612
+ ],
613
+ "Club": {
614
+ "ClubId": 13,
615
+ "Name": "Two Ravens Fencing School"
616
+ },
617
+ "ProfileImage": null
618
+ },
619
+ {
620
+ "PersonId": 40,
621
+ "DisplayName": "Daniel Blair",
622
+ "ClubId": 23,
623
+ "HEMARatings": [],
624
+ "M2Ratings": [
625
+ {
626
+ "FormattedRating": "U"
627
+ }
628
+ ],
629
+ "Club": {
630
+ "ClubId": 23,
631
+ "Name": "Queen City Sword Guild"
632
+ },
633
+ "ProfileImage": null
634
+ },
635
+ {
636
+ "PersonId": 41,
637
+ "DisplayName": "David Reddy",
638
+ "ClubId": 12,
639
+ "HEMARatings": [
640
+ {
641
+ "Rank": 1933,
642
+ "Rating": 1193.3,
643
+ "WeaponId": 1
644
+ }
645
+ ],
646
+ "M2Ratings": [
647
+ {
648
+ "FormattedRating": "U"
649
+ }
650
+ ],
651
+ "Club": {
652
+ "ClubId": 12,
653
+ "Name": "Gem City Duelists Society"
654
+ },
655
+ "ProfileImage": null
656
+ },
657
+ {
658
+ "PersonId": 42,
659
+ "DisplayName": "David Twitchell",
660
+ "ClubId": 38,
661
+ "HEMARatings": [],
662
+ "M2Ratings": [
663
+ {
664
+ "FormattedRating": "U"
665
+ }
666
+ ],
667
+ "Club": {
668
+ "ClubId": 38,
669
+ "Name": "Steelhead Western Martial Arts"
670
+ },
671
+ "ProfileImage": null
672
+ },
673
+ {
674
+ "PersonId": 43,
675
+ "DisplayName": "Derek Ray",
676
+ "ClubId": 10,
677
+ "HEMARatings": [
678
+ {
679
+ "Rank": 107,
680
+ "Rating": 1665.5,
681
+ "WeaponId": 1
682
+ }
683
+ ],
684
+ "M2Ratings": [
685
+ {
686
+ "FormattedRating": "U"
687
+ }
688
+ ],
689
+ "Club": {
690
+ "ClubId": 10,
691
+ "Name": "Columbus United Fencing Club"
692
+ },
693
+ "ProfileImage": null
694
+ },
695
+ {
696
+ "PersonId": 44,
697
+ "DisplayName": "Ethan Adkins",
698
+ "ClubId": 23,
699
+ "HEMARatings": [
700
+ {
701
+ "Rank": 472,
702
+ "Rating": 1483.5,
703
+ "WeaponId": 1
704
+ }
705
+ ],
706
+ "M2Ratings": [
707
+ {
708
+ "FormattedRating": "U"
709
+ }
710
+ ],
711
+ "Club": {
712
+ "ClubId": 23,
713
+ "Name": "Queen City Sword Guild"
714
+ },
715
+ "ProfileImage": null
716
+ },
717
+ {
718
+ "PersonId": 46,
719
+ "DisplayName": "Ethan Garrett",
720
+ "ClubId": 23,
721
+ "HEMARatings": [],
722
+ "M2Ratings": [
723
+ {
724
+ "FormattedRating": "U"
725
+ }
726
+ ],
727
+ "Club": {
728
+ "ClubId": 23,
729
+ "Name": "Queen City Sword Guild"
730
+ },
731
+ "ProfileImage": null
732
+ },
733
+ {
734
+ "PersonId": 47,
735
+ "DisplayName": "J Hendrix",
736
+ "ClubId": 23,
737
+ "HEMARatings": [
738
+ {
739
+ "Rank": 3137,
740
+ "Rating": 1010.5,
741
+ "WeaponId": 1
742
+ }
743
+ ],
744
+ "M2Ratings": [
745
+ {
746
+ "FormattedRating": "U"
747
+ }
748
+ ],
749
+ "Club": {
750
+ "ClubId": 23,
751
+ "Name": "Queen City Sword Guild"
752
+ },
753
+ "ProfileImage": null
754
+ },
755
+ {
756
+ "PersonId": 48,
757
+ "DisplayName": "J.J. Conlon",
758
+ "ClubId": 12,
759
+ "HEMARatings": [
760
+ {
761
+ "Rank": 299,
762
+ "Rating": 1553.1,
763
+ "WeaponId": 1
764
+ }
765
+ ],
766
+ "M2Ratings": [
767
+ {
768
+ "FormattedRating": "U"
769
+ }
770
+ ],
771
+ "Club": {
772
+ "ClubId": 12,
773
+ "Name": "Gem City Duelists Society"
774
+ },
775
+ "ProfileImage": null
776
+ },
777
+ {
778
+ "PersonId": 49,
779
+ "DisplayName": "Jack Seyler",
780
+ "ClubId": 43,
781
+ "HEMARatings": [
782
+ {
783
+ "Rank": 1375,
784
+ "Rating": 1282.1,
785
+ "WeaponId": 1
786
+ }
787
+ ],
788
+ "M2Ratings": [
789
+ {
790
+ "FormattedRating": "U"
791
+ }
792
+ ],
793
+ "Club": {
794
+ "ClubId": 43,
795
+ "Name": "Ars Gladii"
796
+ },
797
+ "ProfileImage": null
798
+ },
799
+ {
800
+ "PersonId": 50,
801
+ "DisplayName": "Jade Smith",
802
+ "ClubId": 23,
803
+ "HEMARatings": [],
804
+ "M2Ratings": [
805
+ {
806
+ "FormattedRating": "U"
807
+ }
808
+ ],
809
+ "Club": {
810
+ "ClubId": 23,
811
+ "Name": "Queen City Sword Guild"
812
+ },
813
+ "ProfileImage": null
814
+ },
815
+ {
816
+ "PersonId": 51,
817
+ "DisplayName": "Jacob Pigeon",
818
+ "ClubId": 43,
819
+ "HEMARatings": [
820
+ {
821
+ "Rank": 2308,
822
+ "Rating": 1138.5,
823
+ "WeaponId": 1
824
+ }
825
+ ],
826
+ "M2Ratings": [
827
+ {
828
+ "FormattedRating": "U"
829
+ }
830
+ ],
831
+ "Club": {
832
+ "ClubId": 43,
833
+ "Name": "Ars Gladii"
834
+ },
835
+ "ProfileImage": null
836
+ },
837
+ {
838
+ "PersonId": 52,
839
+ "DisplayName": "John Osborn",
840
+ "ClubId": 10,
841
+ "HEMARatings": [
842
+ {
843
+ "Rank": 1204,
844
+ "Rating": 1315.5,
845
+ "WeaponId": 1
846
+ }
847
+ ],
848
+ "M2Ratings": [
849
+ {
850
+ "FormattedRating": "U"
851
+ }
852
+ ],
853
+ "Club": {
854
+ "ClubId": 10,
855
+ "Name": "Columbus United Fencing Club"
856
+ },
857
+ "ProfileImage": null
858
+ },
859
+ {
860
+ "PersonId": 53,
861
+ "DisplayName": "Jonathan Rose",
862
+ "ClubId": 12,
863
+ "HEMARatings": [
864
+ {
865
+ "Rank": 2124,
866
+ "Rating": 1165,
867
+ "WeaponId": 1
868
+ }
869
+ ],
870
+ "M2Ratings": [
871
+ {
872
+ "FormattedRating": "U"
873
+ }
874
+ ],
875
+ "Club": {
876
+ "ClubId": 12,
877
+ "Name": "Gem City Duelists Society"
878
+ },
879
+ "ProfileImage": null
880
+ },
881
+ {
882
+ "PersonId": 54,
883
+ "DisplayName": "Justin Hernandez",
884
+ "ClubId": 17,
885
+ "HEMARatings": [
886
+ {
887
+ "Rank": 3905,
888
+ "Rating": 873.5,
889
+ "WeaponId": 1
890
+ }
891
+ ],
892
+ "M2Ratings": [
893
+ {
894
+ "FormattedRating": "U"
895
+ }
896
+ ],
897
+ "Club": {
898
+ "ClubId": 17,
899
+ "Name": "No Club Affiliation "
900
+ },
901
+ "ProfileImage": null
902
+ },
903
+ {
904
+ "PersonId": 55,
905
+ "DisplayName": "Kaitlin Evans",
906
+ "ClubId": 23,
907
+ "HEMARatings": [
908
+ {
909
+ "Rank": 4480,
910
+ "Rating": 701.2,
911
+ "WeaponId": 1
912
+ }
913
+ ],
914
+ "M2Ratings": [
915
+ {
916
+ "FormattedRating": "U"
917
+ }
918
+ ],
919
+ "Club": {
920
+ "ClubId": 23,
921
+ "Name": "Queen City Sword Guild"
922
+ },
923
+ "ProfileImage": null
924
+ },
925
+ {
926
+ "PersonId": 56,
927
+ "DisplayName": "Katharine Keller",
928
+ "ClubId": 43,
929
+ "HEMARatings": [
930
+ {
931
+ "Rank": 2176,
932
+ "Rating": 1155,
933
+ "WeaponId": 1
934
+ }
935
+ ],
936
+ "M2Ratings": [
937
+ {
938
+ "FormattedRating": "U"
939
+ }
940
+ ],
941
+ "Club": {
942
+ "ClubId": 43,
943
+ "Name": "Ars Gladii"
944
+ },
945
+ "ProfileImage": null
946
+ },
947
+ {
948
+ "PersonId": 57,
949
+ "DisplayName": "Landen Kirkland",
950
+ "ClubId": 43,
951
+ "HEMARatings": [
952
+ {
953
+ "Rank": 3615,
954
+ "Rating": 929,
955
+ "WeaponId": 1
956
+ }
957
+ ],
958
+ "M2Ratings": [
959
+ {
960
+ "FormattedRating": "U"
961
+ }
962
+ ],
963
+ "Club": {
964
+ "ClubId": 43,
965
+ "Name": "Ars Gladii"
966
+ },
967
+ "ProfileImage": null
968
+ },
969
+ {
970
+ "PersonId": 58,
971
+ "DisplayName": "Lilli Reininger",
972
+ "ClubId": 23,
973
+ "HEMARatings": [],
974
+ "M2Ratings": [
975
+ {
976
+ "FormattedRating": "U"
977
+ }
978
+ ],
979
+ "Club": {
980
+ "ClubId": 23,
981
+ "Name": "Queen City Sword Guild"
982
+ },
983
+ "ProfileImage": null
984
+ },
985
+ {
986
+ "PersonId": 59,
987
+ "DisplayName": "Loyd Briski",
988
+ "ClubId": 23,
989
+ "HEMARatings": [
990
+ {
991
+ "Rank": 1202,
992
+ "Rating": 1316,
993
+ "WeaponId": 1
994
+ }
995
+ ],
996
+ "M2Ratings": [
997
+ {
998
+ "FormattedRating": "U"
999
+ }
1000
+ ],
1001
+ "Club": {
1002
+ "ClubId": 23,
1003
+ "Name": "Queen City Sword Guild"
1004
+ },
1005
+ "ProfileImage": null
1006
+ },
1007
+ {
1008
+ "PersonId": 60,
1009
+ "DisplayName": "Lucas Caldwell",
1010
+ "ClubId": 12,
1011
+ "HEMARatings": [
1012
+ {
1013
+ "Rank": 2904,
1014
+ "Rating": 1048.3,
1015
+ "WeaponId": 1
1016
+ }
1017
+ ],
1018
+ "M2Ratings": [
1019
+ {
1020
+ "FormattedRating": "U"
1021
+ }
1022
+ ],
1023
+ "Club": {
1024
+ "ClubId": 12,
1025
+ "Name": "Gem City Duelists Society"
1026
+ },
1027
+ "ProfileImage": null
1028
+ },
1029
+ {
1030
+ "PersonId": 61,
1031
+ "DisplayName": "Marten Dollinger",
1032
+ "ClubId": 13,
1033
+ "HEMARatings": [
1034
+ {
1035
+ "Rank": 1606,
1036
+ "Rating": 1242.4,
1037
+ "WeaponId": 1
1038
+ }
1039
+ ],
1040
+ "M2Ratings": [
1041
+ {
1042
+ "FormattedRating": "U"
1043
+ }
1044
+ ],
1045
+ "Club": {
1046
+ "ClubId": 13,
1047
+ "Name": "Two Ravens Fencing School"
1048
+ },
1049
+ "ProfileImage": null
1050
+ },
1051
+ {
1052
+ "PersonId": 62,
1053
+ "DisplayName": "Matthew Dicken",
1054
+ "ClubId": 10,
1055
+ "HEMARatings": [
1056
+ {
1057
+ "Rank": 166,
1058
+ "Rating": 1625.7,
1059
+ "WeaponId": 1
1060
+ }
1061
+ ],
1062
+ "M2Ratings": [
1063
+ {
1064
+ "FormattedRating": "U"
1065
+ }
1066
+ ],
1067
+ "Club": {
1068
+ "ClubId": 10,
1069
+ "Name": "Columbus United Fencing Club"
1070
+ },
1071
+ "ProfileImage": null
1072
+ },
1073
+ {
1074
+ "PersonId": 63,
1075
+ "DisplayName": "Nate Sirrat",
1076
+ "ClubId": 23,
1077
+ "HEMARatings": [],
1078
+ "M2Ratings": [
1079
+ {
1080
+ "FormattedRating": "U"
1081
+ }
1082
+ ],
1083
+ "Club": {
1084
+ "ClubId": 23,
1085
+ "Name": "Queen City Sword Guild"
1086
+ },
1087
+ "ProfileImage": null
1088
+ },
1089
+ {
1090
+ "PersonId": 64,
1091
+ "DisplayName": "Nick Chiappazzi",
1092
+ "ClubId": 38,
1093
+ "HEMARatings": [
1094
+ {
1095
+ "Rank": 2338,
1096
+ "Rating": 1134.1,
1097
+ "WeaponId": 1
1098
+ }
1099
+ ],
1100
+ "M2Ratings": [
1101
+ {
1102
+ "FormattedRating": "U"
1103
+ }
1104
+ ],
1105
+ "Club": {
1106
+ "ClubId": 38,
1107
+ "Name": "Steelhead Western Martial Arts"
1108
+ },
1109
+ "ProfileImage": null
1110
+ },
1111
+ {
1112
+ "PersonId": 65,
1113
+ "DisplayName": "Nick Mills",
1114
+ "ClubId": 23,
1115
+ "HEMARatings": [],
1116
+ "M2Ratings": [
1117
+ {
1118
+ "FormattedRating": "U"
1119
+ }
1120
+ ],
1121
+ "Club": {
1122
+ "ClubId": 23,
1123
+ "Name": "Queen City Sword Guild"
1124
+ },
1125
+ "ProfileImage": null
1126
+ },
1127
+ {
1128
+ "PersonId": 66,
1129
+ "DisplayName": "Patrick Chick",
1130
+ "ClubId": 13,
1131
+ "HEMARatings": [
1132
+ {
1133
+ "Rank": 3962,
1134
+ "Rating": 861.3,
1135
+ "WeaponId": 1
1136
+ }
1137
+ ],
1138
+ "M2Ratings": [
1139
+ {
1140
+ "FormattedRating": "U"
1141
+ }
1142
+ ],
1143
+ "Club": {
1144
+ "ClubId": 13,
1145
+ "Name": "Two Ravens Fencing School"
1146
+ },
1147
+ "ProfileImage": null
1148
+ },
1149
+ {
1150
+ "PersonId": 67,
1151
+ "DisplayName": "Patrick McCarthy",
1152
+ "ClubId": 23,
1153
+ "HEMARatings": [],
1154
+ "M2Ratings": [
1155
+ {
1156
+ "FormattedRating": "U"
1157
+ }
1158
+ ],
1159
+ "Club": {
1160
+ "ClubId": 23,
1161
+ "Name": "Queen City Sword Guild"
1162
+ },
1163
+ "ProfileImage": null
1164
+ },
1165
+ {
1166
+ "PersonId": 68,
1167
+ "DisplayName": "Regina Mendicino",
1168
+ "ClubId": 10,
1169
+ "HEMARatings": [
1170
+ {
1171
+ "Rank": 4058,
1172
+ "Rating": 839.2,
1173
+ "WeaponId": 1
1174
+ }
1175
+ ],
1176
+ "M2Ratings": [
1177
+ {
1178
+ "FormattedRating": "U"
1179
+ }
1180
+ ],
1181
+ "Club": {
1182
+ "ClubId": 10,
1183
+ "Name": "Columbus United Fencing Club"
1184
+ },
1185
+ "ProfileImage": null
1186
+ },
1187
+ {
1188
+ "PersonId": 69,
1189
+ "DisplayName": "Samuel Ryals",
1190
+ "ClubId": 12,
1191
+ "HEMARatings": [
1192
+ {
1193
+ "Rank": 75,
1194
+ "Rating": 1708.6,
1195
+ "WeaponId": 1
1196
+ }
1197
+ ],
1198
+ "M2Ratings": [
1199
+ {
1200
+ "FormattedRating": "U"
1201
+ }
1202
+ ],
1203
+ "Club": {
1204
+ "ClubId": 12,
1205
+ "Name": "Gem City Duelists Society"
1206
+ },
1207
+ "ProfileImage": null
1208
+ },
1209
+ {
1210
+ "PersonId": 70,
1211
+ "DisplayName": "Stephanie Eaton",
1212
+ "ClubId": 10,
1213
+ "HEMARatings": [
1214
+ {
1215
+ "Rank": 1392,
1216
+ "Rating": 1279.5,
1217
+ "WeaponId": 1
1218
+ }
1219
+ ],
1220
+ "M2Ratings": [
1221
+ {
1222
+ "FormattedRating": "U"
1223
+ }
1224
+ ],
1225
+ "Club": {
1226
+ "ClubId": 10,
1227
+ "Name": "Columbus United Fencing Club"
1228
+ },
1229
+ "ProfileImage": null
1230
+ },
1231
+ {
1232
+ "PersonId": 71,
1233
+ "DisplayName": "Thomas Kesler",
1234
+ "ClubId": 12,
1235
+ "HEMARatings": [
1236
+ {
1237
+ "Rank": 519,
1238
+ "Rating": 1472.1,
1239
+ "WeaponId": 1
1240
+ }
1241
+ ],
1242
+ "M2Ratings": [
1243
+ {
1244
+ "FormattedRating": "U"
1245
+ }
1246
+ ],
1247
+ "Club": {
1248
+ "ClubId": 12,
1249
+ "Name": "Gem City Duelists Society"
1250
+ },
1251
+ "ProfileImage": null
1252
+ },
1253
+ {
1254
+ "PersonId": 72,
1255
+ "DisplayName": "Tyler Indermuhle",
1256
+ "ClubId": 13,
1257
+ "HEMARatings": [
1258
+ {
1259
+ "Rank": 1979,
1260
+ "Rating": 1188.1,
1261
+ "WeaponId": 1
1262
+ }
1263
+ ],
1264
+ "M2Ratings": [
1265
+ {
1266
+ "FormattedRating": "U"
1267
+ }
1268
+ ],
1269
+ "Club": {
1270
+ "ClubId": 13,
1271
+ "Name": "Two Ravens Fencing School"
1272
+ },
1273
+ "ProfileImage": null
1274
+ },
1275
+ {
1276
+ "PersonId": 73,
1277
+ "DisplayName": "Victor Marchetto",
1278
+ "ClubId": 13,
1279
+ "HEMARatings": [
1280
+ {
1281
+ "Rank": 412,
1282
+ "Rating": 1503,
1283
+ "WeaponId": 1
1284
+ }
1285
+ ],
1286
+ "M2Ratings": [
1287
+ {
1288
+ "FormattedRating": "U"
1289
+ }
1290
+ ],
1291
+ "Club": {
1292
+ "ClubId": 13,
1293
+ "Name": "Two Ravens Fencing School"
1294
+ },
1295
+ "ProfileImage": null
1296
+ },
1297
+ {
1298
+ "PersonId": 74,
1299
+ "DisplayName": "Will Grube",
1300
+ "ClubId": 23,
1301
+ "HEMARatings": [
1302
+ {
1303
+ "Rank": 1921,
1304
+ "Rating": 1195.3,
1305
+ "WeaponId": 1
1306
+ }
1307
+ ],
1308
+ "M2Ratings": [
1309
+ {
1310
+ "FormattedRating": "U"
1311
+ }
1312
+ ],
1313
+ "Club": {
1314
+ "ClubId": 23,
1315
+ "Name": "Queen City Sword Guild"
1316
+ },
1317
+ "ProfileImage": null
1318
+ },
1319
+ {
1320
+ "PersonId": 75,
1321
+ "DisplayName": "William Handford",
1322
+ "ClubId": 10,
1323
+ "HEMARatings": [
1324
+ {
1325
+ "Rank": 885,
1326
+ "Rating": 1379.5,
1327
+ "WeaponId": 1
1328
+ }
1329
+ ],
1330
+ "M2Ratings": [
1331
+ {
1332
+ "FormattedRating": "U"
1333
+ }
1334
+ ],
1335
+ "Club": {
1336
+ "ClubId": 10,
1337
+ "Name": "Columbus United Fencing Club"
1338
+ },
1339
+ "ProfileImage": null
1340
+ },
1341
+ {
1342
+ "PersonId": 76,
1343
+ "DisplayName": "Brady O'Callaghan",
1344
+ "ClubId": 23,
1345
+ "HEMARatings": [
1346
+ {
1347
+ "Rank": 2731,
1348
+ "Rating": 1073.2,
1349
+ "WeaponId": 1
1350
+ }
1351
+ ],
1352
+ "M2Ratings": [
1353
+ {
1354
+ "FormattedRating": "U"
1355
+ }
1356
+ ],
1357
+ "Club": {
1358
+ "ClubId": 23,
1359
+ "Name": "Queen City Sword Guild"
1360
+ },
1361
+ "ProfileImage": null
1362
+ },
1363
+ {
1364
+ "PersonId": 77,
1365
+ "DisplayName": "Elaine Davis",
1366
+ "ClubId": 23,
1367
+ "HEMARatings": [],
1368
+ "M2Ratings": [
1369
+ {
1370
+ "FormattedRating": "U"
1371
+ }
1372
+ ],
1373
+ "Club": {
1374
+ "ClubId": 23,
1375
+ "Name": "Queen City Sword Guild"
1376
+ },
1377
+ "ProfileImage": null
1378
+ },
1379
+ {
1380
+ "PersonId": 78,
1381
+ "DisplayName": "Donna Hoffman",
1382
+ "ClubId": 1,
1383
+ "HEMARatings": [],
1384
+ "M2Ratings": [
1385
+ {
1386
+ "FormattedRating": "U"
1387
+ }
1388
+ ],
1389
+ "Club": {
1390
+ "ClubId": 1,
1391
+ "Name": "Acme Fencing Club"
1392
+ },
1393
+ "ProfileImage": null
1394
+ },
1395
+ {
1396
+ "PersonId": 79,
1397
+ "DisplayName": "Tom Testerlou",
1398
+ "ClubId": 10,
1399
+ "HEMARatings": [],
1400
+ "M2Ratings": [
1401
+ {
1402
+ "FormattedRating": "U"
1403
+ }
1404
+ ],
1405
+ "Club": {
1406
+ "ClubId": 10,
1407
+ "Name": "Columbus United Fencing Club"
1408
+ },
1409
+ "ProfileImage": null
1410
+ },
1411
+ {
1412
+ "PersonId": 80,
1413
+ "DisplayName": "Robin Steele ",
1414
+ "ClubId": 18,
1415
+ "HEMARatings": [
1416
+ {
1417
+ "Rank": 3668,
1418
+ "Rating": 918.9,
1419
+ "WeaponId": 1
1420
+ }
1421
+ ],
1422
+ "M2Ratings": [
1423
+ {
1424
+ "FormattedRating": "U"
1425
+ }
1426
+ ],
1427
+ "Club": {
1428
+ "ClubId": 18,
1429
+ "Name": "Hilt and Helm Pittsburgh Fencing Club"
1430
+ },
1431
+ "ProfileImage": null
1432
+ },
1433
+ {
1434
+ "PersonId": 81,
1435
+ "DisplayName": "Adam Spies",
1436
+ "ClubId": 23,
1437
+ "HEMARatings": [],
1438
+ "M2Ratings": [
1439
+ {
1440
+ "FormattedRating": "U"
1441
+ }
1442
+ ],
1443
+ "Club": {
1444
+ "ClubId": 23,
1445
+ "Name": "Queen City Sword Guild"
1446
+ },
1447
+ "ProfileImage": null
1448
+ },
1449
+ {
1450
+ "PersonId": 82,
1451
+ "DisplayName": "Chris Shelton ",
1452
+ "ClubId": 18,
1453
+ "HEMARatings": [
1454
+ {
1455
+ "Rank": 245,
1456
+ "Rating": 1575.5,
1457
+ "WeaponId": 1
1458
+ }
1459
+ ],
1460
+ "M2Ratings": [
1461
+ {
1462
+ "FormattedRating": "U"
1463
+ }
1464
+ ],
1465
+ "Club": {
1466
+ "ClubId": 18,
1467
+ "Name": "Hilt and Helm Pittsburgh Fencing Club"
1468
+ },
1469
+ "ProfileImage": null
1470
+ },
1471
+ {
1472
+ "PersonId": 83,
1473
+ "DisplayName": "Tyland Steiner ",
1474
+ "ClubId": 12,
1475
+ "HEMARatings": [
1476
+ {
1477
+ "Rank": 2606,
1478
+ "Rating": 1091,
1479
+ "WeaponId": 1
1480
+ }
1481
+ ],
1482
+ "M2Ratings": [
1483
+ {
1484
+ "FormattedRating": "U"
1485
+ }
1486
+ ],
1487
+ "Club": {
1488
+ "ClubId": 12,
1489
+ "Name": "Gem City Duelists Society"
1490
+ },
1491
+ "ProfileImage": null
1492
+ },
1493
+ {
1494
+ "PersonId": 84,
1495
+ "DisplayName": "Robbie Crockett ",
1496
+ "ClubId": 13,
1497
+ "HEMARatings": [],
1498
+ "M2Ratings": [
1499
+ {
1500
+ "FormattedRating": "U"
1501
+ }
1502
+ ],
1503
+ "Club": {
1504
+ "ClubId": 13,
1505
+ "Name": "Two Ravens Fencing School"
1506
+ },
1507
+ "ProfileImage": null
1508
+ },
1509
+ {
1510
+ "PersonId": 85,
1511
+ "DisplayName": "Sydney Schulte",
1512
+ "ClubId": 10,
1513
+ "HEMARatings": [],
1514
+ "M2Ratings": [
1515
+ {
1516
+ "FormattedRating": "U"
1517
+ }
1518
+ ],
1519
+ "Club": {
1520
+ "ClubId": 10,
1521
+ "Name": "Columbus United Fencing Club"
1522
+ },
1523
+ "ProfileImage": null
1524
+ },
1525
+ {
1526
+ "PersonId": 86,
1527
+ "DisplayName": "Leo Santucci",
1528
+ "ClubId": 10,
1529
+ "HEMARatings": [],
1530
+ "M2Ratings": [
1531
+ {
1532
+ "FormattedRating": "U"
1533
+ }
1534
+ ],
1535
+ "Club": {
1536
+ "ClubId": 10,
1537
+ "Name": "Columbus United Fencing Club"
1538
+ },
1539
+ "ProfileImage": null
1540
+ },
1541
+ {
1542
+ "PersonId": 87,
1543
+ "DisplayName": "JW Pugnetti",
1544
+ "ClubId": 17,
1545
+ "HEMARatings": [
1546
+ {
1547
+ "Rank": 67,
1548
+ "Rating": 1721.3,
1549
+ "WeaponId": 1
1550
+ }
1551
+ ],
1552
+ "M2Ratings": [
1553
+ {
1554
+ "FormattedRating": "U"
1555
+ }
1556
+ ],
1557
+ "Club": {
1558
+ "ClubId": 17,
1559
+ "Name": "No Club Affiliation "
1560
+ },
1561
+ "ProfileImage": null
1562
+ },
1563
+ {
1564
+ "PersonId": 88,
1565
+ "DisplayName": "Pete May",
1566
+ "ClubId": 18,
1567
+ "HEMARatings": [
1568
+ {
1569
+ "Rank": 1424,
1570
+ "Rating": 1273.2,
1571
+ "WeaponId": 1
1572
+ }
1573
+ ],
1574
+ "M2Ratings": [
1575
+ {
1576
+ "FormattedRating": "U"
1577
+ }
1578
+ ],
1579
+ "Club": {
1580
+ "ClubId": 18,
1581
+ "Name": "Hilt and Helm Pittsburgh Fencing Club"
1582
+ },
1583
+ "ProfileImage": null
1584
+ },
1585
+ {
1586
+ "PersonId": 89,
1587
+ "DisplayName": "Jesse May",
1588
+ "ClubId": 18,
1589
+ "HEMARatings": [
1590
+ {
1591
+ "Rank": 3187,
1592
+ "Rating": 1001.1,
1593
+ "WeaponId": 1
1594
+ }
1595
+ ],
1596
+ "M2Ratings": [
1597
+ {
1598
+ "FormattedRating": "U"
1599
+ }
1600
+ ],
1601
+ "Club": {
1602
+ "ClubId": 18,
1603
+ "Name": "Hilt and Helm Pittsburgh Fencing Club"
1604
+ },
1605
+ "ProfileImage": null
1606
+ },
1607
+ {
1608
+ "PersonId": 90,
1609
+ "DisplayName": "Luke Priutt",
1610
+ "ClubId": 10,
1611
+ "HEMARatings": [],
1612
+ "M2Ratings": [
1613
+ {
1614
+ "FormattedRating": "U"
1615
+ }
1616
+ ],
1617
+ "Club": {
1618
+ "ClubId": 10,
1619
+ "Name": "Columbus United Fencing Club"
1620
+ },
1621
+ "ProfileImage": null
1622
+ },
1623
+ {
1624
+ "PersonId": 91,
1625
+ "DisplayName": "Maria Rieske",
1626
+ "ClubId": 10,
1627
+ "HEMARatings": [
1628
+ {
1629
+ "Rank": 2518,
1630
+ "Rating": 1106,
1631
+ "WeaponId": 1
1632
+ }
1633
+ ],
1634
+ "M2Ratings": [
1635
+ {
1636
+ "FormattedRating": "U"
1637
+ }
1638
+ ],
1639
+ "Club": {
1640
+ "ClubId": 10,
1641
+ "Name": "Columbus United Fencing Club"
1642
+ },
1643
+ "ProfileImage": null
1644
+ },
1645
+ {
1646
+ "PersonId": 92,
1647
+ "DisplayName": "Addison Foley",
1648
+ "ClubId": 19,
1649
+ "HEMARatings": [
1650
+ {
1651
+ "Rank": 1390,
1652
+ "Rating": 1279.7,
1653
+ "WeaponId": 1
1654
+ }
1655
+ ],
1656
+ "M2Ratings": [
1657
+ {
1658
+ "FormattedRating": "U"
1659
+ }
1660
+ ],
1661
+ "Club": {
1662
+ "ClubId": 19,
1663
+ "Name": "HEMA Lexington"
1664
+ },
1665
+ "ProfileImage": null
1666
+ },
1667
+ {
1668
+ "PersonId": 93,
1669
+ "DisplayName": "Olivia Cleymaet",
1670
+ "ClubId": 10,
1671
+ "HEMARatings": [
1672
+ {
1673
+ "Rank": 3167,
1674
+ "Rating": 1004.8,
1675
+ "WeaponId": 1
1676
+ }
1677
+ ],
1678
+ "M2Ratings": [
1679
+ {
1680
+ "FormattedRating": "U"
1681
+ }
1682
+ ],
1683
+ "Club": {
1684
+ "ClubId": 10,
1685
+ "Name": "Columbus United Fencing Club"
1686
+ },
1687
+ "ProfileImage": null
1688
+ },
1689
+ {
1690
+ "PersonId": 94,
1691
+ "DisplayName": "Tim Betz",
1692
+ "ClubId": 10,
1693
+ "HEMARatings": [],
1694
+ "M2Ratings": [
1695
+ {
1696
+ "FormattedRating": "U"
1697
+ }
1698
+ ],
1699
+ "Club": {
1700
+ "ClubId": 10,
1701
+ "Name": "Columbus United Fencing Club"
1702
+ },
1703
+ "ProfileImage": null
1704
+ },
1705
+ {
1706
+ "PersonId": 95,
1707
+ "DisplayName": "Zak Ralston",
1708
+ "ClubId": 10,
1709
+ "HEMARatings": [],
1710
+ "M2Ratings": [
1711
+ {
1712
+ "FormattedRating": "U"
1713
+ }
1714
+ ],
1715
+ "Club": {
1716
+ "ClubId": 10,
1717
+ "Name": "Columbus United Fencing Club"
1718
+ },
1719
+ "ProfileImage": null
1720
+ },
1721
+ {
1722
+ "PersonId": 96,
1723
+ "DisplayName": "Derek Maschmann ",
1724
+ "ClubId": 10,
1725
+ "HEMARatings": [],
1726
+ "M2Ratings": [
1727
+ {
1728
+ "FormattedRating": "U"
1729
+ }
1730
+ ],
1731
+ "Club": {
1732
+ "ClubId": 10,
1733
+ "Name": "Columbus United Fencing Club"
1734
+ },
1735
+ "ProfileImage": null
1736
+ },
1737
+ {
1738
+ "PersonId": 97,
1739
+ "DisplayName": "Matt Maloney",
1740
+ "ClubId": 23,
1741
+ "HEMARatings": [],
1742
+ "M2Ratings": [
1743
+ {
1744
+ "FormattedRating": "U"
1745
+ }
1746
+ ],
1747
+ "Club": {
1748
+ "ClubId": 23,
1749
+ "Name": "Queen City Sword Guild"
1750
+ },
1751
+ "ProfileImage": null
1752
+ },
1753
+ {
1754
+ "PersonId": 99,
1755
+ "DisplayName": "Big Steppy",
1756
+ "ClubId": 10,
1757
+ "HEMARatings": [],
1758
+ "M2Ratings": [
1759
+ {
1760
+ "FormattedRating": "U"
1761
+ }
1762
+ ],
1763
+ "Club": {
1764
+ "ClubId": 10,
1765
+ "Name": "Columbus United Fencing Club"
1766
+ },
1767
+ "ProfileImage": null
1768
+ },
1769
+ {
1770
+ "PersonId": 100,
1771
+ "DisplayName": "Gender?",
1772
+ "ClubId": 10,
1773
+ "HEMARatings": [],
1774
+ "M2Ratings": [
1775
+ {
1776
+ "FormattedRating": "U"
1777
+ }
1778
+ ],
1779
+ "Club": {
1780
+ "ClubId": 10,
1781
+ "Name": "Columbus United Fencing Club"
1782
+ },
1783
+ "ProfileImage": null
1784
+ },
1785
+ {
1786
+ "PersonId": 101,
1787
+ "DisplayName": "Team Bestest",
1788
+ "ClubId": 10,
1789
+ "HEMARatings": [],
1790
+ "M2Ratings": [
1791
+ {
1792
+ "FormattedRating": "U"
1793
+ }
1794
+ ],
1795
+ "Club": {
1796
+ "ClubId": 10,
1797
+ "Name": "Columbus United Fencing Club"
1798
+ },
1799
+ "ProfileImage": null
1800
+ },
1801
+ {
1802
+ "PersonId": 102,
1803
+ "DisplayName": "Team Ronin",
1804
+ "ClubId": 10,
1805
+ "HEMARatings": [],
1806
+ "M2Ratings": [
1807
+ {
1808
+ "FormattedRating": "U"
1809
+ }
1810
+ ],
1811
+ "Club": {
1812
+ "ClubId": 10,
1813
+ "Name": "Columbus United Fencing Club"
1814
+ },
1815
+ "ProfileImage": null
1816
+ },
1817
+ {
1818
+ "PersonId": 103,
1819
+ "DisplayName": "Never Feder",
1820
+ "ClubId": 10,
1821
+ "HEMARatings": [],
1822
+ "M2Ratings": [
1823
+ {
1824
+ "FormattedRating": "U"
1825
+ }
1826
+ ],
1827
+ "Club": {
1828
+ "ClubId": 10,
1829
+ "Name": "Columbus United Fencing Club"
1830
+ },
1831
+ "ProfileImage": null
1832
+ },
1833
+ {
1834
+ "PersonId": 104,
1835
+ "DisplayName": "Matthew Huller",
1836
+ "ClubId": 102,
1837
+ "HEMARatings": [
1838
+ {
1839
+ "Rank": 482,
1840
+ "Rating": 1481.3,
1841
+ "WeaponId": 1
1842
+ }
1843
+ ],
1844
+ "M2Ratings": [
1845
+ {
1846
+ "FormattedRating": "U"
1847
+ }
1848
+ ],
1849
+ "Club": {
1850
+ "ClubId": 102,
1851
+ "Name": "Boston Armizare"
1852
+ },
1853
+ "ProfileImage": null
1854
+ },
1855
+ {
1856
+ "PersonId": 105,
1857
+ "DisplayName": "Lacey Eck",
1858
+ "ClubId": 41,
1859
+ "HEMARatings": [
1860
+ {
1861
+ "Rank": 1137,
1862
+ "Rating": 1327,
1863
+ "WeaponId": 1
1864
+ }
1865
+ ],
1866
+ "M2Ratings": [
1867
+ {
1868
+ "FormattedRating": "U"
1869
+ }
1870
+ ],
1871
+ "Club": {
1872
+ "ClubId": 41,
1873
+ "Name": "Two Ravens Fencing"
1874
+ },
1875
+ "ProfileImage": null
1876
+ },
1877
+ {
1878
+ "PersonId": 106,
1879
+ "DisplayName": "Connor Kicmol",
1880
+ "ClubId": 24,
1881
+ "HEMARatings": [],
1882
+ "M2Ratings": [
1883
+ {
1884
+ "FormattedRating": "U"
1885
+ }
1886
+ ],
1887
+ "Club": {
1888
+ "ClubId": 24,
1889
+ "Name": "Steel City Historical Fencing"
1890
+ },
1891
+ "ProfileImage": null
1892
+ },
1893
+ {
1894
+ "PersonId": 107,
1895
+ "DisplayName": "Jason Roggenbuck",
1896
+ "ClubId": 43,
1897
+ "HEMARatings": [
1898
+ {
1899
+ "Rank": 1471,
1900
+ "Rating": 1265.4,
1901
+ "WeaponId": 1
1902
+ }
1903
+ ],
1904
+ "M2Ratings": [
1905
+ {
1906
+ "FormattedRating": "U"
1907
+ }
1908
+ ],
1909
+ "Club": {
1910
+ "ClubId": 43,
1911
+ "Name": "Ars Gladii"
1912
+ },
1913
+ "ProfileImage": null
1914
+ },
1915
+ {
1916
+ "PersonId": 108,
1917
+ "DisplayName": "John Tse",
1918
+ "ClubId": 62,
1919
+ "HEMARatings": [
1920
+ {
1921
+ "Rank": 1308,
1922
+ "Rating": 1297.7,
1923
+ "WeaponId": 1
1924
+ }
1925
+ ],
1926
+ "M2Ratings": [
1927
+ {
1928
+ "FormattedRating": "U"
1929
+ }
1930
+ ],
1931
+ "Club": {
1932
+ "ClubId": 62,
1933
+ "Name": "Bucks Historical Longsword"
1934
+ },
1935
+ "ProfileImage": null
1936
+ },
1937
+ {
1938
+ "PersonId": 109,
1939
+ "DisplayName": "Arianna Keeling",
1940
+ "ClubId": 24,
1941
+ "HEMARatings": [],
1942
+ "M2Ratings": [
1943
+ {
1944
+ "FormattedRating": "U"
1945
+ }
1946
+ ],
1947
+ "Club": {
1948
+ "ClubId": 24,
1949
+ "Name": "Steel City Historical Fencing"
1950
+ },
1951
+ "ProfileImage": null
1952
+ },
1953
+ {
1954
+ "PersonId": 110,
1955
+ "DisplayName": "Thomas Mueller",
1956
+ "ClubId": 17,
1957
+ "HEMARatings": [
1958
+ {
1959
+ "Rank": 2957,
1960
+ "Rating": 1040.3,
1961
+ "WeaponId": 1
1962
+ }
1963
+ ],
1964
+ "M2Ratings": [
1965
+ {
1966
+ "FormattedRating": "U"
1967
+ }
1968
+ ],
1969
+ "Club": {
1970
+ "ClubId": 17,
1971
+ "Name": "No Club Affiliation "
1972
+ },
1973
+ "ProfileImage": null
1974
+ },
1975
+ {
1976
+ "PersonId": 111,
1977
+ "DisplayName": "Aaron Senteney",
1978
+ "ClubId": 38,
1979
+ "HEMARatings": [],
1980
+ "M2Ratings": [
1981
+ {
1982
+ "FormattedRating": "U"
1983
+ }
1984
+ ],
1985
+ "Club": {
1986
+ "ClubId": 38,
1987
+ "Name": "Steelhead Western Martial Arts"
1988
+ },
1989
+ "ProfileImage": null
1990
+ },
1991
+ {
1992
+ "PersonId": 113,
1993
+ "DisplayName": "Thomas Amoroso",
1994
+ "ClubId": 27,
1995
+ "HEMARatings": [
1996
+ {
1997
+ "Rank": 469,
1998
+ "Rating": 1483.7,
1999
+ "WeaponId": 1
2000
+ }
2001
+ ],
2002
+ "M2Ratings": [
2003
+ {
2004
+ "FormattedRating": "U"
2005
+ }
2006
+ ],
2007
+ "Club": {
2008
+ "ClubId": 27,
2009
+ "Name": "Columbus Saber Academy"
2010
+ },
2011
+ "ProfileImage": null
2012
+ },
2013
+ {
2014
+ "PersonId": 114,
2015
+ "DisplayName": "Cody Green",
2016
+ "ClubId": 38,
2017
+ "HEMARatings": [],
2018
+ "M2Ratings": [
2019
+ {
2020
+ "FormattedRating": "U"
2021
+ }
2022
+ ],
2023
+ "Club": {
2024
+ "ClubId": 38,
2025
+ "Name": "Steelhead Western Martial Arts"
2026
+ },
2027
+ "ProfileImage": null
2028
+ },
2029
+ {
2030
+ "PersonId": 116,
2031
+ "DisplayName": "Shane ONeill",
2032
+ "ClubId": 23,
2033
+ "HEMARatings": [],
2034
+ "M2Ratings": [
2035
+ {
2036
+ "FormattedRating": "U"
2037
+ }
2038
+ ],
2039
+ "Club": {
2040
+ "ClubId": 23,
2041
+ "Name": "Queen City Sword Guild"
2042
+ },
2043
+ "ProfileImage": null
2044
+ },
2045
+ {
2046
+ "PersonId": 118,
2047
+ "DisplayName": "Trevor Pedersen",
2048
+ "ClubId": 10,
2049
+ "HEMARatings": [
2050
+ {
2051
+ "Rank": 12,
2052
+ "Rating": 1883.7,
2053
+ "WeaponId": 1
2054
+ }
2055
+ ],
2056
+ "M2Ratings": [
2057
+ {
2058
+ "FormattedRating": "U"
2059
+ }
2060
+ ],
2061
+ "Club": {
2062
+ "ClubId": 10,
2063
+ "Name": "Columbus United Fencing Club"
2064
+ },
2065
+ "ProfileImage": null
2066
+ },
2067
+ {
2068
+ "PersonId": 119,
2069
+ "DisplayName": "Jason Feldman",
2070
+ "ClubId": 23,
2071
+ "HEMARatings": [
2072
+ {
2073
+ "Rank": 2836,
2074
+ "Rating": 1057.7,
2075
+ "WeaponId": 1
2076
+ }
2077
+ ],
2078
+ "M2Ratings": [
2079
+ {
2080
+ "FormattedRating": "U"
2081
+ }
2082
+ ],
2083
+ "Club": {
2084
+ "ClubId": 23,
2085
+ "Name": "Queen City Sword Guild"
2086
+ },
2087
+ "ProfileImage": null
2088
+ },
2089
+ {
2090
+ "PersonId": 120,
2091
+ "DisplayName": "Tyler Dunham",
2092
+ "ClubId": 43,
2093
+ "HEMARatings": [
2094
+ {
2095
+ "Rank": 240,
2096
+ "Rating": 1579.2,
2097
+ "WeaponId": 1
2098
+ }
2099
+ ],
2100
+ "M2Ratings": [
2101
+ {
2102
+ "FormattedRating": "U"
2103
+ }
2104
+ ],
2105
+ "Club": {
2106
+ "ClubId": 43,
2107
+ "Name": "Ars Gladii"
2108
+ },
2109
+ "ProfileImage": null
2110
+ },
2111
+ {
2112
+ "PersonId": 121,
2113
+ "DisplayName": "Nishchal Nigam",
2114
+ "ClubId": 38,
2115
+ "HEMARatings": [],
2116
+ "M2Ratings": [
2117
+ {
2118
+ "FormattedRating": "U"
2119
+ }
2120
+ ],
2121
+ "Club": {
2122
+ "ClubId": 38,
2123
+ "Name": "Steelhead Western Martial Arts"
2124
+ },
2125
+ "ProfileImage": null
2126
+ },
2127
+ {
2128
+ "PersonId": 122,
2129
+ "DisplayName": "Brandon Nguyen",
2130
+ "ClubId": 43,
2131
+ "HEMARatings": [],
2132
+ "M2Ratings": [
2133
+ {
2134
+ "FormattedRating": "U"
2135
+ }
2136
+ ],
2137
+ "Club": {
2138
+ "ClubId": 43,
2139
+ "Name": "Ars Gladii"
2140
+ },
2141
+ "ProfileImage": null
2142
+ },
2143
+ {
2144
+ "PersonId": 123,
2145
+ "DisplayName": "Katina Dunham",
2146
+ "ClubId": 43,
2147
+ "HEMARatings": [
2148
+ {
2149
+ "Rank": 2249,
2150
+ "Rating": 1147.2,
2151
+ "WeaponId": 1
2152
+ }
2153
+ ],
2154
+ "M2Ratings": [
2155
+ {
2156
+ "FormattedRating": "U"
2157
+ }
2158
+ ],
2159
+ "Club": {
2160
+ "ClubId": 43,
2161
+ "Name": "Ars Gladii"
2162
+ },
2163
+ "ProfileImage": null
2164
+ }
2165
+ ]
2166
+
2167
+ export default mockGetClubById;