# Detailed Results Endpoint

This endpoint returns past fight’s per-round advanced statistics and post fight, these statistics can and should settle bets as they are verified official fight statistics.

This endpoint is updated every 10 seconds.The information is made available after every round and when the fight is finished.

## **Endpoint URLs**

| `https://dde-api.data.imgarena.com/mma/detailedresults` |
| ------------------------------------------------------- |

## **Required Headers**

| Key           | Value                                            |
| ------------- | ------------------------------------------------ |
| Accept        | application/vnd.imggaming.dde.api+json;version=1 |
| Content-Type  | application/json                                 |
| Authorization | Bearer eyvhaoudfgpdfgo\*                         |

## **Request Parameters**

| Parameter               | Description                                                        |
| ----------------------- | ------------------------------------------------------------------ |
| fightcard={fightcardId} | Detailed results for a given fight card                            |
| fight={fightId}         | Detailed results for a given fight                                 |
| fighter={fighterId}     | Detailed results for a specific fighter                            |
| org="pfl"               | Filter out results based on the organisation, can pass org = "pfl" |

The end point only takes into account one of these parameters at a time.

If no parameter is provided, then this returns statistics for all fights from the 5 most recent fight cards.

## **Response Model:**

| Field Name           | Type    | Description                                                                    |
| -------------------- | ------- | ------------------------------------------------------------------------------ |
| statistics           | object  | detailed information on the accumulative actions for the red and blue team     |
| result               | object  | detailed information on the result of the fight                                |
| fightScoringComplete | boolean | provides confirmation on whether the fight has been made official              |
| roundStatistics      | object  | provides detailed information on the actions which have occurred in each round |
| fightcardId          | integer | the ID of a fight card                                                         |
| redteam              | object  | basic information on the fighters in a fight                                   |
| date                 | string  | the date of the start of the fight                                             |
| blueteam             | object  | basic information on the fighters in a fight                                   |
| fightId              | integer | the ID of a fight                                                              |
| organisation         | string  | organisation that the fight is related to, this will be "PFL"                  |

### statistics **object model**

| Field Name | Type   | Description                                      |
| ---------- | ------ | ------------------------------------------------ |
| redTeam    | object | contains total actions for the red team fighter  |
| blueTeam   | object | contains total actions for the blue team fighter |

### **Red Team Object:**

| Field Name                  | Type    | Description                                                                  |
| --------------------------- | ------- | ---------------------------------------------------------------------------- |
| totalStrikesLanded          | integer | the total number of strikes landed throughout the entire fight               |
| submissionsAttempted        | integer | the total number of submissions attempted in an entire fight                 |
| totalStrikesAttempted       | integer | the total number of strikes attempted throughout the entire fight            |
| sigBodyStrikesAttempted     | integer | the total number of significant body strikes attempted in a entire fight     |
| Knockdowns                  | integer | the total number of knockouts in a fight                                     |
| sigClinchStrikesAttempted   | integer | the total number of significant clinches attempted in a entire fight         |
| sigDistanceStrikesAttempted | integer | the total number of significant distance strikes attempted in a entire fight |
| sigDistanceStrikesLanded    | integer | the total number of significant distance strikes landed in a entire fight    |
| sigLegStrikesAttempted      | integer | the total number of significant leg strikes attempted in a entire fight      |
| sigHeadStrikesLanded        | integer | the total number of significant head strikes landed in a entire fight        |
| sigStrikeAccuracy           | Float   | Significant strike accuracy                                                  |
| takedownsAttempted          | integer | the total number of takedowns attempted                                      |
| sigBodyStrikesLanded        | integer | the total number of significant body strikes landed in a entire fight        |
| sigLegStrikesLanded         | integer | the total number of significant leg strikes landed in a entire fight         |
| sigStrikesAttempted         | integer | the total number of significant strikes attempted in a entire fight          |
| sigStrikesLanded            | integer | the total number of significant strikes landed in a entire fight             |
| sigHeadStrikesAttempted     | integer | the total number of significant head strikes attempted in a entire fight     |
| sigGroundStrikesAttempted   | integer | the total number of significant ground strikes attempted in a entire fight   |
| takedownsLanded             | integer | the total number of takedowns landed in a entire fight                       |
| sigGroundStrikesLanded      | integer | the total number of significant ground strikes landed in a entire fight      |
| reversals                   | integer | The total number of reversals in a fight                                     |
| takedownAccuracy            | float   | takedown accuracy throughout a fight                                         |
| sigClinchStrikeslanded      | integer | the total number of significant clinch strikes landed in a entire fight      |
| guardControlTime            | integer | the total time spent having guard control in seconds                         |
| miscGroundControlTime       | integer | the total time spent having Misc guard control in seconds                    |
| groundTime                  | integer | the total time spent having on ground in seconds                             |
| clinchKnockdowns            | integer |                                                                              |
| neutralTime                 | integer | the total time spent having in neutral in seconds                            |
| standingTime                | integer | the total time spent standing in seconds                                     |
| halfGuardControlTime        | integer | the total time spent having half guard control in seconds                    |
| distanceTime                | integer | the total distance time                                                      |
| backControlTime             | integer | the total time spent having back control in seconds                          |
| clinchTime                  | integer | the total time spent in clinch in seconds                                    |
| mountControlTime            | integer | the total time spent having mount control in seconds                         |
| controlTime                 | integer | the total control time n seconds                                             |
| totalKnockDowns             | integer | the total number of takedowns                                                |
| groundControlTime           | integer | the total time spent having ground control in seconds                        |
| sideControlTime             | integer | the total time spent having side control in seconds                          |

### **Blue Team Object:**

| Field Name                  | Type    | Description                                                                  |
| --------------------------- | ------- | ---------------------------------------------------------------------------- |
| totalStrikesLanded          | integer | the total number of strikes landed throughout the entire fight               |
| submissionsAttempted        | integer | the total number of submissions attempted in an entire fight                 |
| totalStrikesAttempted       | integer | the total number of strikes attempted throughout the entire fight            |
| sigBodyStrikesAttempted     | integer | the total number of significant body strikes attempted in a entire fight     |
| Knockdowns                  | integer | the total number of knockouts in a fight                                     |
| sigClinchStrikesAttempted   | integer | the total number of significant clinches attempted in a entire fight         |
| sigDistanceStrikesAttempted | integer | the total number of significant distance strikes attempted in a entire fight |
| sigDistanceStrikesLanded    | integer | the total number of significant distance strikes landed in a entire fight    |
| sigLegStrikesAttempted      | integer | the total number of significant leg strikes attempted in a entire fight      |
| sigHeadStrikesLanded        | integer | the total number of significant head strikes landed in a entire fight        |
| sigStrikeAccuracy           | Float   | Significant strike accuracy                                                  |
| takedownsAttempted          | integer | the total number of takedowns attempted                                      |
| sigBodyStrikesLanded        | integer | the total number of significant body strikes landed in a entire fight        |
| sigLegStrikesLanded         | integer | the total number of significant leg strikes landed in a entire fight         |
| sigStrikesAttempted         | integer | the total number of significant strikes attempted in a entire fight          |
| sigStrikesLanded            | integer | the total number of significant strikes landed in a entire fight             |
| sigHeadStrikesAttempted     | integer | the total number of significant head strikes attempted in a entire fight     |
| sigGroundStrikesAttempted   | integer | the total number of significant ground strikes attempted in a entire fight   |
| takedownsLanded             | integer | the total number of takedowns landed in a entire fight                       |
| sigGroundStrikesLanded      | integer | the total number of significant ground strikes landed in a entire fight      |
| reversals                   | integer | The total number of reversals in a fight                                     |
| takedownAccuracy            | float   | takedown accuracy throughout a fight                                         |
| sigClinchStrikeslanded      | integer | the total number of significant clinch strikes landed in a entire fight      |
| guardControlTime            | integer | the total time spent having guard control in seconds                         |
| miscGroundControlTime       | integer | the total time spent having Misc guard control in seconds                    |
| groundTime                  | integer | the total time spent having on ground in seconds                             |
| clinchKnockdowns            | integer |                                                                              |
| neutralTime                 | integer | the total time spent having in neutral in seconds                            |
| standingTime                | integer | the total time spent standing in seconds                                     |
| halfGuardControlTime        | integer | the total time spent having half guard control in seconds                    |
| distanceTime                | integer | the total distance time                                                      |
| backControlTime             | integer | the total time spent having back control in seconds                          |
| clinchTime                  | integer | the total time spent in clinch in seconds                                    |
| mountControlTime            | integer | the total time spent having mount control in seconds                         |
| controlTime                 | integer | the total control time n seconds                                             |
| totalKnockDowns             | integer | the total number of takedowns                                                |
| groundControlTime           | integer | the total time spent having ground control in seconds                        |
| sideControlTime             | integer | the total time spent having side control in seconds                          |

### Result Object

| Field Name    | Type   | Description                                                                                                                                                                      |
| ------------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| winner        | string | The corner that won the fight (if applicable)                                                                                                                                    |
| method        | string | The method of the result. Possible values; unanimousdecision, splitdecision, majoritydecision, disqualification, ko, doctorstoppedtko, overturned, couldnotcontinue, submission. |
| methodDetails | object | Depending on the method returned, further method information will be returned within this object                                                                                 |

### Method Details Object

| Field Name          | Type    | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| endingTargetDetails | string  | If method is KO/TKO, info returned in this field. Null if not. Possible values; Head, Body, Leg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| endingPosition      | string  | If method is KO/TKO or Submission, info returned in this field. Null if not. Possible values; At Distance, In Clinch, On Ground, From Guard, From Half Guard, From Side Control, From Mount, From Back Control, From Bottom Guard, From Bottom Half Guard, From Bottom Side Control, From Bottom Mount, From Bottom Back Control, From North South, From Front Headlock, From Whizzer, After Drop to Guard, After Drop to Half Guard, After Drop to Ground, From Inoki-Ali Position, From Bottom, From Crucifix, Flying Armbar, From Scissor Takedown, Flying Triangle, Standing, Standing Back Control |
| endingTime          | string  | The time in the ending round in which the fight was stopped. \* note that this may not always be the same date as the fight starts on                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| fightScores         | object  | If method contains “decision”, this object will contain the scores of the judges for both teams.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| submissionDetails   | string  | If Method is submission, info returned in this field. Null if not. Possible values; Armbar, Kimura, Keylock, Kneebar, Ankle Lock, Heel Hook, Toe Hold, Omoplata, Neck Crank, Other – Lock, Rear Naked Choke, Triangle Choke, Guillotine Choke, Arm Triangle, Anaconda Choke, Peruvian Necktie, D’Arce Choke, Gi Choke, Gogo Plata, Other – Choke, Strikes, Injury, Other, North-South Choke, Hammerlock, Forearm Choke                                                                                                                                                                                  |
| endingRound         | integer | the round in which the fight ended on                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| endingStrikeDetails | string  | If Method is KO/TKO or Submission (from strikes), info returned in this field. Null if not. Possible values; Punch, Punches, Elbow, Elbows, Knee, Knees, Kick, Kicks, Stomp, Stomps, Headbutt, Headbutts, Spinning Back Fist, Spinning Back Kick, Flying Knee, Slam                                                                                                                                                                                                                                                                                                                                     |

### **Fightscore Object**

| Field Name         | Type        | Description                                                          |
| ------------------ | ----------- | -------------------------------------------------------------------- |
| **`winnerScores`** | **`array`** | **`detailed information provided on the fight score of the winner`** |
| **`loserscores`**  | **`array`** | **`detailed information provided on the fight score of the loser`**  |

### **RoundStatistics Objects:**

| Field Name | Type   | Description                          |
| ---------- | ------ | ------------------------------------ |
| 4          | object | object containing details on round 4 |
| 5          | object | object containing details on round 5 |
| 1          | object | object containing details on round 1 |
| 2          | object | object containing details on round 2 |
| 3          | object | object containing details on round 3 |

### **Round 4,5,1,2 or 3 Objects:**

| Field Name           | Type    | Description                                  |
| -------------------- | ------- | -------------------------------------------- |
| redTeam              | object  | object containing details on round 4         |
| blueTeam             | object  | object containing details on round 5         |
| roundScoringComplete | boolean | indicated that the round scoring is official |

### **RoundStatistics - redTeam Object**

| Field Name                  | Type    | Description                                                                  |
| --------------------------- | ------- | ---------------------------------------------------------------------------- |
| totalStrikesLanded          | integer | the total number of strikes landed throughout the entire fight               |
| submissionsAttempted        | integer | the total number of submissions attempted in an entire fight                 |
| totalStrikesAttempted       | integer | the total number of strikes attempted throughout the entire fight            |
| sigBodyStrikesAttempted     | integer | the total number of significant body strikes attempted in a entire fight     |
| Knockdowns                  | integer | the total number of knockouts in a fight                                     |
| sigClinchStrikesAttempted   | integer | the total number of significant clinches attempted in a entire fight         |
| sigDistanceStrikesAttempted | integer | the total number of significant distance strikes attempted in a entire fight |
| sigDistanceStrikesLanded    | integer | the total number of significant distance strikes landed in a entire fight    |
| sigLegStrikesAttempted      | integer | the total number of significant leg strikes attempted in a entire fight      |
| sigHeadStrikesLanded        | integer | the total number of significant head strikes landed in a entire fight        |
| sigStrikeAccuracy           | Float   | Significant strike accuracy                                                  |
| takedownsAttempted          | integer | the total number of takedowns attempted                                      |
| sigBodyStrikesLanded        | integer | the total number of significant body strikes landed in a entire fight        |
| sigLegStrikesLanded         | integer | the total number of significant leg strikes landed in a entire fight         |
| sigStrikesAttempted         | integer | the total number of significant strikes attempted in a entire fight          |
| sigStrikesLanded            | integer | the total number of significant strikes landed in a entire fight             |
| sigHeadStrikesAttempted     | integer | the total number of significant head strikes attempted in a entire fight     |
| sigGroundStrikesAttempted   | integer | the total number of significant ground strikes attempted in a entire fight   |
| takedownsLanded             | integer | the total number of takedowns landed in a entire fight                       |
| sigGroundStrikesLanded      | integer | the total number of significant ground strikes landed in a entire fight      |
| reversals                   | integer | The total number of reversals in a fight                                     |
| takedownAccuracy            | float   | takedown accuracy throughout a fight                                         |
| sigClinchStrikeslanded      | integer | the total number of significant clinch strikes landed in a entire fight      |
| guardControlTime            | integer | the total time spent having guard control in seconds                         |
| miscGroundControlTime       | integer | the total time spent having Misc guard control in seconds                    |
| groundTime                  | integer | the total time spent having on ground in seconds                             |
| clinchKnockdowns            | integer |                                                                              |
| neutralTime                 | integer | the total time spent having in neutral in seconds                            |
| standingTime                | integer | the total time spent standing in seconds                                     |
| halfGuardControlTime        | integer | the total time spent having half guard control in seconds                    |
| distanceTime                | integer | the total distance time                                                      |
| backControlTime             | integer | the total time spent having back control in seconds                          |
| clinchTime                  | integer | the total time spent in clinch in seconds                                    |
| mountControlTime            | integer | the total time spent having mount control in seconds                         |
| controlTime                 | integer | the total control time n seconds                                             |
| totalKnockDowns             | integer | the total number of takedowns                                                |
| groundControlTime           | integer | the total time spent having ground control in seconds                        |
| sideControlTime             | integer | the total time spent having side control in seconds                          |

### **RoundStatistics - blueTeam Object**

| Field Name                  | Type    | Description                                                                  |
| --------------------------- | ------- | ---------------------------------------------------------------------------- |
| totalStrikesLanded          | integer | the total number of strikes landed throughout the entire fight               |
| submissionsAttempted        | integer | the total number of submissions attempted in an entire fight                 |
| totalStrikesAttempted       | integer | the total number of strikes attempted throughout the entire fight            |
| sigBodyStrikesAttempted     | integer | the total number of significant body strikes attempted in a entire fight     |
| Knockdowns                  | integer | the total number of knockouts in a fight                                     |
| sigClinchStrikesAttempted   | integer | the total number of significant clinches attempted in a entire fight         |
| sigDistanceStrikesAttempted | integer | the total number of significant distance strikes attempted in a entire fight |
| sigDistanceStrikesLanded    | integer | the total number of significant distance strikes landed in a entire fight    |
| sigLegStrikesAttempted      | integer | the total number of significant leg strikes attempted in a entire fight      |
| sigHeadStrikesLanded        | integer | the total number of significant head strikes landed in a entire fight        |
| sigStrikeAccuracy           | Float   | Significant strike accuracy                                                  |
| takedownsAttempted          | integer | the total number of takedowns attempted                                      |
| sigBodyStrikesLanded        | integer | the total number of significant body strikes landed in a entire fight        |
| sigLegStrikesLanded         | integer | the total number of significant leg strikes landed in a entire fight         |
| sigStrikesAttempted         | integer | the total number of significant strikes attempted in a entire fight          |
| sigStrikesLanded            | integer | the total number of significant strikes landed in a entire fight             |
| sigHeadStrikesAttempted     | integer | the total number of significant head strikes attempted in a entire fight     |
| sigGroundStrikesAttempted   | integer | the total number of significant ground strikes attempted in a entire fight   |
| takedownsLanded             | integer | the total number of takedowns landed in a entire fight                       |
| sigGroundStrikesLanded      | integer | the total number of significant ground strikes landed in a entire fight      |
| reversals                   | integer | The total number of reversals in a fight                                     |
| takedownAccuracy            | float   | takedown accuracy throughout a fight                                         |
| sigClinchStrikeslanded      | integer | the total number of significant clinch strikes landed in a entire fight      |
| guardControlTime            | integer | the total time spent having guard control in seconds                         |
| miscGroundControlTime       | integer | the total time spent having Misc guard control in seconds                    |
| groundTime                  | integer | the total time spent having on ground in seconds                             |
| clinchKnockdowns            | integer |                                                                              |
| neutralTime                 | integer | the total time spent having in neutral in seconds                            |
| standingTime                | integer | the total time spent standing in seconds                                     |
| halfGuardControlTime        | integer | the total time spent having half guard control in seconds                    |
| distanceTime                | integer | the total distance time                                                      |
| backControlTime             | integer | the total time spent having back control in seconds                          |
| clinchTime                  | integer | the total time spent in clinch in seconds                                    |
| mountControlTime            | integer | the total time spent having mount control in seconds                         |
| controlTime                 | integer | the total control time n seconds                                             |
| totalKnockDowns             | integer | the total number of takedowns                                                |
| groundControlTime           | integer | the total time spent having ground control in seconds                        |
| sideControlTime             | integer | the total time spent having side control in seconds                          |

## Red Team

| **F**ield Name | Type   | Description                                                                  |
| -------------- | ------ | ---------------------------------------------------------------------------- |
| fighter1       | object | information on the fighter 1 within the team (In all ufc fights this is 1:1) |

## Blue Team

| **F**ield Name | Type   | Description                                                                  |
| -------------- | ------ | ---------------------------------------------------------------------------- |
| fighter1       | object | information on the fighter 1 within the team (In all UFC fights this is 1:1) |

## Fighter 1 Object

| **F**ield Name | Type    | Description                   |
| -------------- | ------- | ----------------------------- |
| firstName      | string  | the first name of the fighter |
| lastName       | string  | the last name of the fighter  |
| fighterId      | integer | the ID of the fighter         |

## **WinnerScores / LoserScores Object**

| Field Name     | Type    | Description                                                                   |
| -------------- | ------- | ----------------------------------------------------------------------------- |
| judgeFirstName | string  | The fist name of the judge, for PFL this will always be Judge                 |
| judgeLastName  | string  | The last name of the judge, currently we will either return one, two or three |
| score          | integer | The ID of the fighter                                                         |

## Sample Response

```
[
  {
    "organisation": "PFL",
    "statistics": {
      "redTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      },
      "blueTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {
      "1": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "2": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "3": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      }
    },
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Anas",
        "lastName": "Azizoun",
        "fighterId": 6099
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Gustavo",
        "lastName": "Oliveira",
        "fighterId": 6127
      }
    },
    "fightId": 11966,
    "fightScoringComplete": false,
    "result": {
      "winner": "red",
      "method": "unanimousdecision",
      "methodDetails": {
        "endingTargetDetails": null,
        "endingPosition": null,
        "submissionDetails": null,
        "endingTime": "05:00",
        "fightScores": {
          "winnerScores": [
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "one",
              "score": 30
            },
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "one",
              "score": 30
            },
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "two",
              "score": 30
            }
          ],
          "loserScores": [
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "one",
              "score": 27
            },
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "one",
              "score": 27
            },
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "two",
              "score": 27
            }
          ]
        },
        "endingRound": 3,
        "endingStrikeDetails": null
      }
    }
  },
  {
    "organisation": "PFL",
    "statistics": {
      "redTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      },
      "blueTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {},
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Jan",
        "lastName": "Cieplowski",
        "fighterId": 6129
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Julien",
        "lastName": "Lopez",
        "fighterId": 6117
      }
    },
    "fightId": 11922,
    "fightScoringComplete": false,
    "result": {
      "winner": null,
      "method": null,
      "methodDetails": {
        "endingTargetDetails": null,
        "endingPosition": null,
        "submissionDetails": null,
        "endingTime": null,
        "fightScores": {
          "winnerScores": [],
          "loserScores": []
        },
        "endingRound": null,
        "endingStrikeDetails": null
      }
    }
  },
  {
    "organisation": "PFL",
    "statistics": {
      "redTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      },
      "blueTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {},
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Gaetano",
        "lastName": "Pirrello",
        "fighterId": 6112
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Salvatore",
        "lastName": "Liga",
        "fighterId": 6133
      }
    },
    "fightId": 11990,
    "fightScoringComplete": false,
    "result": {
      "winner": "red",
      "method": "submission",
      "methodDetails": {
        "endingTargetDetails": "body",
        "endingPosition": "at distance",
        "submissionDetails": "other",
        "endingTime": "02:22",
        "fightScores": {
          "winnerScores": [],
          "loserScores": []
        },
        "endingRound": 1,
        "endingStrikeDetails": null
      }
    }
  },
  {
    "organisation": "PFL",
    "statistics": {
      "blueTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      },
      "redTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {
      "1": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 34,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 34,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 34,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 34,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 34,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 34,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "2": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "3": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      }
    },
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Khamzat",
        "lastName": "Abaev",
        "fighterId": 6111
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Chequina",
        "lastName": "Noso Pedro",
        "fighterId": 6130
      }
    },
    "fightId": 11961,
    "fightScoringComplete": false,
    "result": {
      "winner": "red",
      "method": "doctorstoppedtko",
      "methodDetails": {
        "endingTargetDetails": "body",
        "endingPosition": "at distance",
        "submissionDetails": null,
        "endingTime": "04:25",
        "fightScores": {
          "winnerScores": [],
          "loserScores": []
        },
        "endingRound": 1,
        "endingStrikeDetails": null
      }
    }
  },
  {
    "organisation": "PFL",
    "statistics": {
      "redTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 58,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 864,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 841,
        "halfGuardControlTime": 14,
        "sigGroundStrikesLanded": 0,
        "reversals": 1,
        "totalStrikesLanded": 0,
        "distanceTime": 829,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 12,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 19,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 2,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 1,
        "groundControlTime": 14,
        "takedownAccuracy": 50,
        "sigClinchStrikesLanded": 0
      },
      "blueTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 58,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 864,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 841,
        "halfGuardControlTime": 1,
        "sigGroundStrikesLanded": 0,
        "reversals": 1,
        "totalStrikesLanded": 0,
        "distanceTime": 829,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 12,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 4,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 1,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {
      "1": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 58,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 264,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 241,
          "halfGuardControlTime": 14,
          "sigGroundStrikesLanded": 0,
          "reversals": 1,
          "totalStrikesLanded": 0,
          "distanceTime": 229,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 12,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 19,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 2,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 1,
          "groundControlTime": 14,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 58,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 264,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 241,
          "halfGuardControlTime": 1,
          "sigGroundStrikesLanded": 0,
          "reversals": 1,
          "totalStrikesLanded": 0,
          "distanceTime": 229,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 12,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 4,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 1,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "2": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 300,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 300,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 300,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 300,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 300,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 300,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "3": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 300,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 300,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 300,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 300,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 300,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 300,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      }
    },
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Nicolas",
        "lastName": "Di Franco",
        "fighterId": 6114
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Catalin",
        "lastName": "Safta",
        "fighterId": 6126
      }
    },
    "fightId": 11962,
    "fightScoringComplete": true,
    "result": {
      "winner": null,
      "method": "unanimousdecision",
      "methodDetails": {
        "endingTargetDetails": null,
        "endingPosition": null,
        "submissionDetails": null,
        "endingTime": "05:00",
        "fightScores": {
          "winnerScores": [],
          "loserScores": []
        },
        "endingRound": 3,
        "endingStrikeDetails": null
      }
    }
  },
  {
    "organisation": "PFL",
    "statistics": {
      "redTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      },
      "blueTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {},
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Salvo",
        "lastName": "Giudice",
        "fighterId": 6116
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Brice",
        "lastName": "Belghazi",
        "fighterId": 6108
      }
    },
    "fightId": 11964,
    "fightScoringComplete": false,
    "result": {
      "winner": null,
      "method": null,
      "methodDetails": {
        "endingTargetDetails": null,
        "endingPosition": null,
        "submissionDetails": null,
        "endingTime": null,
        "fightScores": {
          "winnerScores": [],
          "loserScores": []
        },
        "endingRound": null,
        "endingStrikeDetails": null
      }
    }
  },
  {
    "organisation": "PFL",
    "statistics": {
      "redTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 10,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 25,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 23,
        "halfGuardControlTime": 2,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 8,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 14,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 2,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 2,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      },
      "blueTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 10,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 25,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 23,
        "halfGuardControlTime": 5,
        "sigGroundStrikesLanded": 0,
        "reversals": 1,
        "totalStrikesLanded": 0,
        "distanceTime": 8,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 14,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 5,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 2,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 1,
        "groundControlTime": 5,
        "takedownAccuracy": 50,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {
      "1": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 10,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 25,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 23,
          "halfGuardControlTime": 2,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 8,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 14,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 2,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 2,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 10,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 25,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 23,
          "halfGuardControlTime": 5,
          "sigGroundStrikesLanded": 0,
          "reversals": 1,
          "totalStrikesLanded": 0,
          "distanceTime": 8,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 14,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 5,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 2,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 1,
          "groundControlTime": 5,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "2": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "3": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      }
    },
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Adam",
        "lastName": "Meskini",
        "fighterId": 6103
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Tiziano",
        "lastName": "Ferranti",
        "fighterId": 6132
      }
    },
    "fightId": 11965,
    "fightScoringComplete": true,
    "result": {
      "winner": null,
      "method": "ko",
      "methodDetails": {
        "endingTargetDetails": "head",
        "endingPosition": "at distance",
        "submissionDetails": null,
        "endingTime": "04:25",
        "fightScores": {
          "winnerScores": [],
          "loserScores": []
        },
        "endingRound": 1,
        "endingStrikeDetails": null
      }
    }
  },
  {
    "organisation": "PFL",
    "statistics": {
      "redTeam": {
        "guardControlTime": 1,
        "miscGroundControlTime": 0,
        "groundTime": 331,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 154,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 133,
        "halfGuardControlTime": 2,
        "sigGroundStrikesLanded": 0,
        "reversals": 2,
        "totalStrikesLanded": 0,
        "distanceTime": 120,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 13,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 4,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 4,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      },
      "blueTeam": {
        "guardControlTime": 9,
        "miscGroundControlTime": 0,
        "groundTime": 331,
        "sigDistanceStrikesLanded": 3,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 3,
        "neutralTime": 154,
        "sigHeadStrikesAttempted": 2,
        "standingTime": 133,
        "halfGuardControlTime": 3,
        "sigGroundStrikesLanded": 0,
        "reversals": 1,
        "totalStrikesLanded": 6,
        "distanceTime": 120,
        "submissionsAttempted": 1,
        "backControlTime": 0,
        "totalStrikesAttempted": 11,
        "clinchTime": 13,
        "sigBodyStrikesAttempted": 2,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 6,
        "sigLegStrikesAttempted": 2,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 1,
        "controlTime": 14,
        "sigStrikeAccuracy": 50,
        "takedownsAttempted": 2,
        "sigBodyStrikesLanded": 1,
        "sigLegStrikesLanded": 1,
        "sigStrikesAttempted": 6,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 1,
        "groundControlTime": 12,
        "takedownAccuracy": 50,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {
      "1": {
        "redTeam": {
          "guardControlTime": 1,
          "miscGroundControlTime": 0,
          "groundTime": 267,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 43,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 30,
          "halfGuardControlTime": 2,
          "sigGroundStrikesLanded": 0,
          "reversals": 2,
          "totalStrikesLanded": 0,
          "distanceTime": 23,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 7,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 4,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 4,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 9,
          "miscGroundControlTime": 0,
          "groundTime": 267,
          "sigDistanceStrikesLanded": 3,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 3,
          "neutralTime": 43,
          "sigHeadStrikesAttempted": 2,
          "standingTime": 30,
          "halfGuardControlTime": 3,
          "sigGroundStrikesLanded": 0,
          "reversals": 1,
          "totalStrikesLanded": 6,
          "distanceTime": 23,
          "submissionsAttempted": 1,
          "backControlTime": 0,
          "totalStrikesAttempted": 11,
          "clinchTime": 7,
          "sigBodyStrikesAttempted": 2,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 6,
          "sigLegStrikesAttempted": 2,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 1,
          "controlTime": 14,
          "sigStrikeAccuracy": 50,
          "takedownsAttempted": 2,
          "sigBodyStrikesLanded": 1,
          "sigLegStrikesLanded": 1,
          "sigStrikesAttempted": 6,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 1,
          "groundControlTime": 12,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "2": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 63,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 110,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 103,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 97,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 6,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 63,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 110,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 103,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 97,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 6,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "3": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      }
    },
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Anas",
        "lastName": "Azizoun",
        "fighterId": 6099
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Gustavo",
        "lastName": "Oliveira",
        "fighterId": 6127
      }
    },
    "fightId": 11991,
    "fightScoringComplete": true,
    "result": {
      "winner": null,
      "method": "doctorstoppedtko",
      "methodDetails": {
        "endingTargetDetails": "body",
        "endingPosition": "from guard",
        "submissionDetails": null,
        "endingTime": "02:13",
        "fightScores": {
          "winnerScores": [],
          "loserScores": []
        },
        "endingRound": 2,
        "endingStrikeDetails": null
      }
    }
  },
  {
    "organisation": "PFL",
    "statistics": {
      "redTeam": {
        "guardControlTime": 7,
        "miscGroundControlTime": 0,
        "groundTime": 25,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 597,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 582,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 310,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 272,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 7,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 14,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 7,
        "groundControlTime": 7,
        "takedownAccuracy": 50,
        "sigClinchStrikesLanded": 0
      },
      "blueTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 25,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 597,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 582,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 310,
        "submissionsAttempted": 1,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 272,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 1,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 10,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 1,
        "takedownsLanded": 5,
        "groundControlTime": 0,
        "takedownAccuracy": 50,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {
      "1": {
        "redTeam": {
          "guardControlTime": 7,
          "miscGroundControlTime": 0,
          "groundTime": 25,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 289,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 274,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 2,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 272,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 7,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 4,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 2,
          "groundControlTime": 7,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 25,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 289,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 274,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 2,
          "submissionsAttempted": 1,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 272,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 1,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 2,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 1,
          "takedownsLanded": 1,
          "groundControlTime": 0,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "2": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 300,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 300,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 300,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 10,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 5,
          "groundControlTime": 0,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 300,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 300,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 300,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 8,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 4,
          "groundControlTime": 0,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "3": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 7,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 7,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 7,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 7,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 7,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 7,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      }
    },
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Gaetano",
        "lastName": "Pirrello",
        "fighterId": 6112
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Salvatore",
        "lastName": "Liga",
        "fighterId": 6133
      }
    },
    "fightId": 11993,
    "fightScoringComplete": true,
    "result": {
      "winner": null,
      "method": "ko",
      "methodDetails": {
        "endingTargetDetails": "body",
        "endingPosition": "from guard",
        "submissionDetails": null,
        "endingTime": "04:52",
        "fightScores": {
          "winnerScores": [],
          "loserScores": []
        },
        "endingRound": 3,
        "endingStrikeDetails": null
      }
    }
  },
  {
    "organisation": "PFL",
    "statistics": {
      "redTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 24,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 8,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 5,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 1,
        "totalStrikesLanded": 0,
        "distanceTime": 5,
        "submissionsAttempted": 1,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 16,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 2,
        "sigHeadStrikesLanded": 0,
        "controlTime": 19,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 2,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 1,
        "groundControlTime": 19,
        "takedownAccuracy": 50,
        "sigClinchStrikesLanded": 0
      },
      "blueTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 24,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 8,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 5,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 5,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 2,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 1,
        "groundControlTime": 0,
        "takedownAccuracy": 50,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {
      "1": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 24,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 8,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 5,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 1,
          "totalStrikesLanded": 0,
          "distanceTime": 5,
          "submissionsAttempted": 1,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 16,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 2,
          "sigHeadStrikesLanded": 0,
          "controlTime": 19,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 2,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 1,
          "groundControlTime": 19,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 24,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 8,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 5,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 5,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 2,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 1,
          "groundControlTime": 0,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "2": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "3": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 0,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 0,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 0,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 0,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 0,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      }
    },
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Ibragim",
        "lastName": "Ibragimov",
        "fighterId": 6113
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Mathys",
        "lastName": "Duragrin",
        "fighterId": 6128
      }
    },
    "fightId": 11994,
    "fightScoringComplete": true,
    "result": {
      "winner": null,
      "method": "submission",
      "methodDetails": {
        "endingTargetDetails": "body",
        "endingPosition": "from guard",
        "submissionDetails": "other",
        "endingTime": "04:29",
        "fightScores": {
          "winnerScores": [],
          "loserScores": []
        },
        "endingRound": 1,
        "endingStrikeDetails": null
      }
    }
  },
  {
    "organisation": "PFL",
    "statistics": {
      "redTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      },
      "blueTeam": {
        "guardControlTime": 0,
        "miscGroundControlTime": 0,
        "groundTime": 0,
        "sigDistanceStrikesLanded": 0,
        "clinchKnockdowns": 0,
        "sigStrikesLanded": 0,
        "neutralTime": 0,
        "sigHeadStrikesAttempted": 0,
        "standingTime": 0,
        "halfGuardControlTime": 0,
        "sigGroundStrikesLanded": 0,
        "reversals": 0,
        "totalStrikesLanded": 0,
        "distanceTime": 0,
        "submissionsAttempted": 0,
        "backControlTime": 0,
        "totalStrikesAttempted": 0,
        "clinchTime": 0,
        "sigBodyStrikesAttempted": 0,
        "knockDowns": 0,
        "mountControlTime": 0,
        "sigClinchStrikesAttempted": 0,
        "sigDistanceStrikesAttempted": 0,
        "sigLegStrikesAttempted": 0,
        "sideControlTime": 0,
        "sigHeadStrikesLanded": 0,
        "controlTime": 0,
        "sigStrikeAccuracy": 0,
        "takedownsAttempted": 0,
        "sigBodyStrikesLanded": 0,
        "sigLegStrikesLanded": 0,
        "sigStrikesAttempted": 0,
        "sigGroundStrikesAttempted": 0,
        "totalKnockDowns": 0,
        "takedownsLanded": 0,
        "groundControlTime": 0,
        "takedownAccuracy": 0,
        "sigClinchStrikesLanded": 0
      }
    },
    "roundStatistics": {
      "1": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 3,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 299,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 296,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 23,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 273,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 2,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 1,
          "groundControlTime": 0,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 3,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 299,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 296,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 23,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 273,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 2,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 1,
          "groundControlTime": 0,
          "takedownAccuracy": 50,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "2": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 2,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 300,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 297,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 171,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 126,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 2,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 300,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 297,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 171,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 126,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      },
      "3": {
        "redTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 15,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 284,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 284,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 0,
          "totalStrikesLanded": 0,
          "distanceTime": 243,
          "submissionsAttempted": 0,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 41,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 0,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 0,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 0,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 0,
          "groundControlTime": 0,
          "takedownAccuracy": 0,
          "sigClinchStrikesLanded": 0
        },
        "blueTeam": {
          "guardControlTime": 0,
          "miscGroundControlTime": 0,
          "groundTime": 15,
          "sigDistanceStrikesLanded": 0,
          "clinchKnockdowns": 0,
          "sigStrikesLanded": 0,
          "neutralTime": 284,
          "sigHeadStrikesAttempted": 0,
          "standingTime": 284,
          "halfGuardControlTime": 0,
          "sigGroundStrikesLanded": 0,
          "reversals": 1,
          "totalStrikesLanded": 0,
          "distanceTime": 243,
          "submissionsAttempted": 1,
          "backControlTime": 0,
          "totalStrikesAttempted": 0,
          "clinchTime": 41,
          "sigBodyStrikesAttempted": 0,
          "knockDowns": 0,
          "mountControlTime": 7,
          "sigClinchStrikesAttempted": 0,
          "sigDistanceStrikesAttempted": 0,
          "sigLegStrikesAttempted": 0,
          "sideControlTime": 0,
          "sigHeadStrikesLanded": 0,
          "controlTime": 7,
          "sigStrikeAccuracy": 0,
          "takedownsAttempted": 5,
          "sigBodyStrikesLanded": 0,
          "sigLegStrikesLanded": 0,
          "sigStrikesAttempted": 0,
          "sigGroundStrikesAttempted": 0,
          "totalKnockDowns": 0,
          "takedownsLanded": 2,
          "groundControlTime": 7,
          "takedownAccuracy": 40,
          "sigClinchStrikesLanded": 0
        },
        "roundScoringComplete": true
      }
    },
    "fightcardId": 2424,
    "redTeam": {
      "fighter1": {
        "firstName": "Nicolas",
        "lastName": "Di Franco",
        "fighterId": 6114
      }
    },
    "date": "2025-09-02",
    "blueTeam": {
      "fighter1": {
        "firstName": "Catalin",
        "lastName": "Safta",
        "fighterId": 6126
      }
    },
    "fightId": 11995,
    "fightScoringComplete": false,
    "result": {
      "winner": "red",
      "method": "majoritydecision",
      "methodDetails": {
        "endingTargetDetails": null,
        "endingPosition": null,
        "submissionDetails": null,
        "endingTime": "05:00",
        "fightScores": {
          "winnerScores": [
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "two",
              "score": 30
            },
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "three",
              "score": 29
            },
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "three",
              "score": 28
            }
          ],
          "loserScores": [
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "two",
              "score": 26
            },
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "three",
              "score": 27
            },
            {
              "judgeFirstName": "Judge",
              "judgeLastName": "three",
              "score": 28
            }
          ]
        },
        "endingRound": 3,
        "endingStrikeDetails": null
      }
    }
  }
]
```
